diff --git a/cli/azd/cmd/constructors_coverage3_test.go b/cli/azd/cmd/constructors_coverage3_test.go index 1e303611d9c..9597ca14c29 100644 --- a/cli/azd/cmd/constructors_coverage3_test.go +++ b/cli/azd/cmd/constructors_coverage3_test.go @@ -218,6 +218,7 @@ func Test_NewInitAction(t *testing.T) { mockinput.NewMockConsole(), nil, // gitCli &initFlags{}, + nil, // args nil, // repoInitializer nil, // templateManager nil, // featuresManager diff --git a/cli/azd/cmd/init.go b/cli/azd/cmd/init.go index 7bec25d86a8..1d59ad50252 100644 --- a/cli/azd/cmd/init.go +++ b/cli/azd/cmd/init.go @@ -8,6 +8,7 @@ import ( "encoding/json" "errors" "fmt" + "io" "os" "path/filepath" "strings" @@ -30,6 +31,7 @@ import ( "github.com/azure/azure-dev/cli/azd/pkg/extensions" "github.com/azure/azure-dev/cli/azd/pkg/input" "github.com/azure/azure-dev/cli/azd/pkg/lazy" + "github.com/azure/azure-dev/cli/azd/pkg/osutil" "github.com/azure/azure-dev/cli/azd/pkg/output" "github.com/azure/azure-dev/cli/azd/pkg/output/ux" "github.com/azure/azure-dev/cli/azd/pkg/project" @@ -53,8 +55,14 @@ func newInitFlags(cmd *cobra.Command, global *internal.GlobalCommandOptions) *in func newInitCmd() *cobra.Command { return &cobra.Command{ - Use: "init", + Use: "init [directory]", Short: "Initialize a new application.", + Long: `Initialize a new application. + +When used with --template, a new directory is created (named after the template) +and the project is initialized inside it — similar to git clone. +Pass "." as the directory to initialize in the current directory instead.`, + Args: cobra.MaximumNArgs(1), } } @@ -134,6 +142,7 @@ type initAction struct { cmdRun exec.CommandRunner gitCli *git.Cli flags *initFlags + args []string repoInitializer *repository.Initializer templateManager *templates.TemplateManager featuresManager *alpha.FeatureManager @@ -151,6 +160,7 @@ func newInitAction( console input.Console, gitCli *git.Cli, flags *initFlags, + args []string, repoInitializer *repository.Initializer, templateManager *templates.TemplateManager, featuresManager *alpha.FeatureManager, @@ -167,6 +177,7 @@ func newInitAction( cmdRun: cmdRun, gitCli: gitCli, flags: flags, + args: args, repoInitializer: repoInitializer, templateManager: templateManager, featuresManager: featuresManager, @@ -178,15 +189,12 @@ func newInitAction( } } -func (i *initAction) Run(ctx context.Context) (*actions.ActionResult, error) { +func (i *initAction) Run(ctx context.Context) (_ *actions.ActionResult, retErr error) { wd, err := os.Getwd() if err != nil { return nil, fmt.Errorf("getting cwd: %w", err) } - azdCtx := azdcontext.NewAzdContextWithDirectory(wd) - i.lazyAzdCtx.SetValue(azdCtx) - if i.flags.templateBranch != "" && i.flags.templatePath == "" { return nil, &internal.ErrorWithSuggestion{ Err: internal.ErrBranchRequiresTemplate, @@ -194,6 +202,91 @@ func (i *initAction) Run(ctx context.Context) (*actions.ActionResult, error) { } } + // Validate init-mode combinations before any filesystem side effects. + isTemplateInit := i.flags.templatePath != "" || len(i.flags.templateTags) > 0 + initModeCount := 0 + if isTemplateInit { + initModeCount++ + } + if i.flags.fromCode { + initModeCount++ + } + if i.flags.minimal { + initModeCount++ + } + if initModeCount > 1 { + return nil, &internal.ErrorWithSuggestion{ + Err: internal.ErrMultipleInitModes, + Suggestion: "Choose one: 'azd init --template ', 'azd init --from-code', or 'azd init --minimal'.", + } + } + + // The positional [directory] argument is only valid with --template. + if len(i.args) > 0 && !isTemplateInit { + return nil, &internal.ErrorWithSuggestion{ + Err: fmt.Errorf( + "positional [directory] argument requires --template: %w", + internal.ErrInvalidFlagCombination, + ), + Suggestion: "Use 'azd init --template [directory]' to initialize " + + "a template into a new directory.", + } + } + + // Resolve local template paths to absolute before any chdir so that + // relative paths like ../my-template resolve against the original CWD. + if i.flags.templatePath != "" && templates.LooksLikeLocalPath(i.flags.templatePath) { + absPath, err := filepath.Abs(i.flags.templatePath) + if err == nil { + i.flags.templatePath = absPath + } + } + + // When a template is specified, auto-create a project directory (like git clone). + // The user can pass a positional [directory] argument to override the folder name, + // or pass "." to use the current directory (preserving existing behavior). + createdProjectDir := "" + originalWd := wd + + if isTemplateInit { + targetDir, err := i.resolveTargetDirectory(wd) + if err != nil { + return nil, err + } + + if targetDir != wd { + // Check if target already exists and is non-empty + if err := i.validateTargetDirectory(ctx, targetDir); err != nil { + return nil, err + } + + if err := os.MkdirAll(targetDir, osutil.PermissionDirectory); err != nil { + return nil, fmt.Errorf("creating project directory '%s': %w", + filepath.Base(targetDir), err) + } + + if err := os.Chdir(targetDir); err != nil { + return nil, fmt.Errorf("changing to project directory '%s': %w", + filepath.Base(targetDir), err) + } + + wd = targetDir + createdProjectDir = targetDir + + // Clean up the created directory and restore the original CWD + // if any downstream step fails, matching git clone's behavior. + defer func() { + if retErr != nil { + _ = os.Chdir(originalWd) + _ = os.RemoveAll(createdProjectDir) + } + }() + } + } + + azdCtx := azdcontext.NewAzdContextWithDirectory(wd) + i.lazyAzdCtx.SetValue(azdCtx) + // ensure that git is available if err := tools.EnsureInstalled(ctx, []tools.ExternalTool{i.gitCli}...); err != nil { return nil, err @@ -238,26 +331,11 @@ func (i *initAction) Run(ctx context.Context) (*actions.ActionResult, error) { } var initTypeSelect initType = initUnknown - initTypeCount := 0 - if i.flags.templatePath != "" || len(i.flags.templateTags) > 0 { - initTypeCount++ + if isTemplateInit { initTypeSelect = initAppTemplate - } - if i.flags.fromCode { - initTypeCount++ + } else if i.flags.fromCode || i.flags.minimal { initTypeSelect = initFromApp } - if i.flags.minimal { - initTypeCount++ - initTypeSelect = initFromApp // Minimal now also uses initFromApp path - } - - if initTypeCount > 1 { - return nil, &internal.ErrorWithSuggestion{ - Err: internal.ErrMultipleInitModes, - Suggestion: "Choose one: 'azd init --template ', 'azd init --from-code', or 'azd init --minimal'.", - } - } if initTypeSelect == initUnknown { if existingProject { @@ -281,6 +359,21 @@ func (i *initAction) Run(ctx context.Context) (*actions.ActionResult, error) { output.WithLinkFormat("%s", wd), output.WithLinkFormat("%s", "https://aka.ms/azd-third-party-code-notice")) + if createdProjectDir != "" { + // Compute a user-friendly cd path relative to where they started + cdPath, relErr := filepath.Rel(originalWd, createdProjectDir) + if relErr != nil { + cdPath = createdProjectDir // Fall back to absolute path + } + // Quote the path when it contains whitespace so the hint is copy/paste-safe + cdPathDisplay := cdPath + if strings.ContainsAny(cdPath, " \t") { + cdPathDisplay = fmt.Sprintf("%q", cdPath) + } + followUp += fmt.Sprintf("\n\nChange to the project directory:\n %s", + output.WithHighLightFormat("cd %s", cdPathDisplay)) + } + if i.featuresManager.IsEnabled(agentcopilot.FeatureCopilot) { followUp += fmt.Sprintf("\n\n%s Run %s to deploy project to the cloud.", output.WithHintFormat("(→) NEXT STEPS:"), @@ -813,13 +906,21 @@ func (i *initAction) initializeExtensions(ctx context.Context, azdCtx *azdcontex } func getCmdInitHelpDescription(*cobra.Command) string { - return generateCmdHelpDescription("Initialize a new application in your current directory.", + return generateCmdHelpDescription( + "Initialize a new application. When using --template, creates a project directory automatically.", []string{ formatHelpNote( fmt.Sprintf("Running %s without flags specified will prompt "+ "you to initialize using your existing code, or from a template.", output.WithHighLightFormat("init"), )), + formatHelpNote( + fmt.Sprintf("When using %s, a new directory is created "+ + "(named after the template) and the project is initialized inside it. "+ + "Pass %s as the directory to use the current directory instead.", + output.WithHighLightFormat("--template"), + output.WithHighLightFormat("."), + )), formatHelpNote( "To view all available sample templates, including those submitted by the azd community, visit: " + output.WithLinkFormat("https://azure.github.io/awesome-azd") + "."), @@ -828,11 +929,16 @@ func getCmdInitHelpDescription(*cobra.Command) string { func getCmdInitHelpFooter(*cobra.Command) string { return generateCmdHelpSamplesBlock(map[string]string{ - "Initialize a template to your current local directory from a GitHub repo.": fmt.Sprintf("%s %s", + "Initialize a template into a new project directory.": fmt.Sprintf("%s %s", output.WithHighLightFormat("azd init --template"), output.WithWarningFormat("[GitHub repo URL]"), ), - "Initialize a template to your current local directory from a branch other than main.": fmt.Sprintf("%s %s %s %s", + "Initialize a template into the current directory.": fmt.Sprintf("%s %s %s", + output.WithHighLightFormat("azd init --template"), + output.WithWarningFormat("[GitHub repo URL]"), + output.WithHighLightFormat("."), + ), + "Initialize a template from a branch other than main.": fmt.Sprintf("%s %s %s %s", output.WithHighLightFormat("azd init --template"), output.WithWarningFormat("[GitHub repo URL]"), output.WithHighLightFormat("--branch"), @@ -910,3 +1016,79 @@ type initModeRequiredErrorOptions struct { Description string `json:"description"` Command string `json:"command"` } + +// resolveTargetDirectory determines the target directory for template initialization. +// It returns the current working directory when "." is passed or no template is specified, +// otherwise it derives or uses the explicit directory name. +func (i *initAction) resolveTargetDirectory(wd string) (string, error) { + if len(i.args) > 0 { + dirArg := i.args[0] + if dirArg == "." { + return wd, nil + } + + if filepath.IsAbs(dirArg) { + return dirArg, nil + } + + return filepath.Join(wd, dirArg), nil + } + + // No positional arg: auto-derive from template path + if i.flags.templatePath != "" { + dirName := templates.DeriveDirectoryName(i.flags.templatePath) + return filepath.Join(wd, dirName), nil + } + + // Template selected via --filter tags (interactive selection) — use CWD + return wd, nil +} + +// validateTargetDirectory checks that the target directory is safe to use. +// If it already exists and is non-empty, it prompts the user for confirmation +// or returns an error in non-interactive mode. +func (i *initAction) validateTargetDirectory(ctx context.Context, targetDir string) error { + f, err := os.Open(targetDir) + if errors.Is(err, os.ErrNotExist) { + return nil // Directory doesn't exist yet — will be created + } + if err != nil { + return fmt.Errorf("reading directory '%s': %w", filepath.Base(targetDir), err) + } + + // Read a single entry to check emptiness without loading the full listing. + names, readErr := f.Readdirnames(1) + f.Close() + + if readErr != nil && !errors.Is(readErr, io.EOF) { + return fmt.Errorf("checking directory contents of '%s': %w", + filepath.Base(targetDir), readErr) + } + + if len(names) == 0 { + return nil // Empty directory is fine + } + + dirName := filepath.Base(targetDir) + + if i.console.IsNoPromptMode() { + return fmt.Errorf( + "directory '%s' already exists and is not empty; "+ + "use '.' to initialize in the current directory instead", dirName) + } + + proceed, err := i.console.Confirm(ctx, input.ConsoleOptions{ + Message: fmt.Sprintf( + "Directory '%s' already exists and is not empty. Initialize here anyway?", dirName), + DefaultValue: false, + }) + if err != nil { + return fmt.Errorf("prompting for directory confirmation: %w", err) + } + + if !proceed { + return errors.New("initialization cancelled") + } + + return nil +} diff --git a/cli/azd/cmd/init_test.go b/cli/azd/cmd/init_test.go index 05891a0fb11..59945ce58b7 100644 --- a/cli/azd/cmd/init_test.go +++ b/cli/azd/cmd/init_test.go @@ -25,7 +25,9 @@ import ( // setupInitAction creates an initAction wired with mocks that pass git-install checks. // The working directory is changed to a temp dir so that .env loading and azdcontext work. -func setupInitAction(t *testing.T, mockContext *mocks.MockContext, flags *initFlags) *initAction { +func setupInitAction( + t *testing.T, mockContext *mocks.MockContext, flags *initFlags, args ...string, +) *initAction { t.Helper() // Work in a temp directory so os.Getwd / godotenv.Overload operate in isolation. @@ -50,6 +52,7 @@ func setupInitAction(t *testing.T, mockContext *mocks.MockContext, flags *initFl cmdRun: mockContext.CommandRunner, gitCli: gitCli, flags: flags, + args: args, featuresManager: alpha.NewFeaturesManagerWithConfig(config.NewEmptyConfig()), } } @@ -231,3 +234,195 @@ func TestInitFailFastMissingEnvNonInteractive(t *testing.T) { } }) } + +func TestInitResolveTargetDirectory(t *testing.T) { + t.Run("DotArgUsesCwd", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + flags := &initFlags{ + templatePath: "owner/repo", + global: &internal.GlobalCommandOptions{}, + } + action := setupInitAction(t, mockContext, flags, ".") + + wd, err := os.Getwd() + require.NoError(t, err) + + result, err := action.resolveTargetDirectory(wd) + require.NoError(t, err) + require.Equal(t, wd, result) + }) + + t.Run("ExplicitDirectoryUsesArg", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + flags := &initFlags{ + templatePath: "owner/repo", + global: &internal.GlobalCommandOptions{}, + } + action := setupInitAction(t, mockContext, flags, "my-project") + + wd, err := os.Getwd() + require.NoError(t, err) + + result, err := action.resolveTargetDirectory(wd) + require.NoError(t, err) + require.Equal(t, filepath.Join(wd, "my-project"), result) + }) + + t.Run("NoArgDerivesFromTemplatePath", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + flags := &initFlags{ + templatePath: "Azure-Samples/todo-nodejs-mongo", + global: &internal.GlobalCommandOptions{}, + } + action := setupInitAction(t, mockContext, flags) + + wd, err := os.Getwd() + require.NoError(t, err) + + result, err := action.resolveTargetDirectory(wd) + require.NoError(t, err) + require.Equal(t, filepath.Join(wd, "todo-nodejs-mongo"), result) + }) + + t.Run("NoArgWithFilterTagsUsesCwd", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + flags := &initFlags{ + templateTags: []string{"python"}, + global: &internal.GlobalCommandOptions{}, + } + action := setupInitAction(t, mockContext, flags) + + wd, err := os.Getwd() + require.NoError(t, err) + + result, err := action.resolveTargetDirectory(wd) + require.NoError(t, err) + require.Equal(t, wd, result) + }) + + t.Run("TemplateWithDotGitSuffix", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + flags := &initFlags{ + templatePath: "https://github.com/Azure-Samples/todo-nodejs-mongo.git", + global: &internal.GlobalCommandOptions{}, + } + action := setupInitAction(t, mockContext, flags) + + wd, err := os.Getwd() + require.NoError(t, err) + + result, err := action.resolveTargetDirectory(wd) + require.NoError(t, err) + require.Equal(t, filepath.Join(wd, "todo-nodejs-mongo"), result) + }) +} + +func TestInitValidateTargetDirectory(t *testing.T) { + t.Run("NonExistentDirectoryIsValid", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + flags := &initFlags{ + templatePath: "owner/repo", + global: &internal.GlobalCommandOptions{}, + } + action := setupInitAction(t, mockContext, flags) + + err := action.validateTargetDirectory( + *mockContext.Context, filepath.Join(t.TempDir(), "nonexistent")) + require.NoError(t, err) + }) + + t.Run("EmptyDirectoryIsValid", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + flags := &initFlags{ + templatePath: "owner/repo", + global: &internal.GlobalCommandOptions{}, + } + action := setupInitAction(t, mockContext, flags) + + emptyDir := t.TempDir() + err := action.validateTargetDirectory(*mockContext.Context, emptyDir) + require.NoError(t, err) + }) + + t.Run("NonEmptyDirectoryErrorsInNoPromptMode", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + mockContext.Console.SetNoPromptMode(true) + flags := &initFlags{ + templatePath: "owner/repo", + global: &internal.GlobalCommandOptions{NoPrompt: true}, + } + action := setupInitAction(t, mockContext, flags) + + nonEmptyDir := t.TempDir() + require.NoError(t, os.WriteFile( + filepath.Join(nonEmptyDir, "existing.txt"), []byte("content"), 0600)) + + err := action.validateTargetDirectory(*mockContext.Context, nonEmptyDir) + require.Error(t, err) + require.Contains(t, err.Error(), "already exists and is not empty") + }) +} + +func TestInitCreatesProjectDirectory(t *testing.T) { + t.Run("TemplateInitCreatesDirectory", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + mockContext.Console.SetNoPromptMode(true) + flags := &initFlags{ + templatePath: "Azure-Samples/todo-nodejs-mongo", + global: &internal.GlobalCommandOptions{NoPrompt: true}, + } + flags.EnvironmentName = "testenv" + action := setupInitAction(t, mockContext, flags) + + wd, err := os.Getwd() + require.NoError(t, err) + + expectedDir := filepath.Join(wd, "todo-nodejs-mongo") + require.NoDirExists(t, expectedDir) + + // Run will panic or error later due to missing template mocks, + // but the directory should be created before that point. + _ = runActionSafe(*mockContext.Context, action) + require.DirExists(t, expectedDir) + }) + + t.Run("DotArgDoesNotCreateDirectory", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + mockContext.Console.SetNoPromptMode(true) + flags := &initFlags{ + templatePath: "Azure-Samples/todo-nodejs-mongo", + global: &internal.GlobalCommandOptions{NoPrompt: true}, + } + flags.EnvironmentName = "testenv" + action := setupInitAction(t, mockContext, flags, ".") + + wd, err := os.Getwd() + require.NoError(t, err) + + // Should NOT create a todo-nodejs-mongo subdirectory + _ = runActionSafe(*mockContext.Context, action) + + derivedDir := filepath.Join(wd, "todo-nodejs-mongo") + require.NoDirExists(t, derivedDir) + }) + + t.Run("ExplicitDirArgCreatesNamedDirectory", func(t *testing.T) { + mockContext := mocks.NewMockContext(context.Background()) + mockContext.Console.SetNoPromptMode(true) + flags := &initFlags{ + templatePath: "Azure-Samples/todo-nodejs-mongo", + global: &internal.GlobalCommandOptions{NoPrompt: true}, + } + flags.EnvironmentName = "testenv" + action := setupInitAction(t, mockContext, flags, "my-custom-project") + + wd, err := os.Getwd() + require.NoError(t, err) + + expectedDir := filepath.Join(wd, "my-custom-project") + require.NoDirExists(t, expectedDir) + + _ = runActionSafe(*mockContext.Context, action) + require.DirExists(t, expectedDir) + }) +} diff --git a/cli/azd/cmd/testdata/TestFigSpec.ts b/cli/azd/cmd/testdata/TestFigSpec.ts index 8dce57c192c..567199b7e86 100644 --- a/cli/azd/cmd/testdata/TestFigSpec.ts +++ b/cli/azd/cmd/testdata/TestFigSpec.ts @@ -2274,6 +2274,10 @@ const completionSpec: Fig.Spec = { description: 'Provision and deploy to Azure after initializing the project from a template.', }, ], + args: { + name: 'directory', + isOptional: true, + }, }, { name: ['mcp'], diff --git a/cli/azd/cmd/testdata/TestUsage-azd-init.snap b/cli/azd/cmd/testdata/TestUsage-azd-init.snap index 7f09a7a7188..d991b14513e 100644 --- a/cli/azd/cmd/testdata/TestUsage-azd-init.snap +++ b/cli/azd/cmd/testdata/TestUsage-azd-init.snap @@ -1,11 +1,12 @@ -Initialize a new application in your current directory. +Initialize a new application. When using --template, creates a project directory automatically. • Running init without flags specified will prompt you to initialize using your existing code, or from a template. + • When using --template, a new directory is created (named after the template) and the project is initialized inside it. Pass . as the directory to use the current directory instead. • To view all available sample templates, including those submitted by the azd community, visit: https://azure.github.io/awesome-azd. Usage - azd init [flags] + azd init [directory] [flags] Flags -b, --branch string : The template branch to initialize from. Must be used with a template argument (--template or -t). @@ -26,10 +27,13 @@ Global Flags --no-prompt : Accepts the default value instead of prompting, or it fails if there is no default. Examples - Initialize a template to your current local directory from a GitHub repo. + Initialize a template from a branch other than main. + azd init --template [GitHub repo URL] --branch [Branch name] + + Initialize a template into a new project directory. azd init --template [GitHub repo URL] - Initialize a template to your current local directory from a branch other than main. - azd init --template [GitHub repo URL] --branch [Branch name] + Initialize a template into the current directory. + azd init --template [GitHub repo URL] . diff --git a/cli/azd/internal/repository/detect_confirm_test.go b/cli/azd/internal/repository/detect_confirm_test.go index 172c86084dc..e05090c3118 100644 --- a/cli/azd/internal/repository/detect_confirm_test.go +++ b/cli/azd/internal/repository/detect_confirm_test.go @@ -17,7 +17,6 @@ import ( ) func Test_detectConfirm_confirm(t *testing.T) { - t.Parallel() dir := t.TempDir() // avoid symlinked paths as this may result in the final path returned // to be a valid, but aliased path to the absolute entries in the test, @@ -35,6 +34,8 @@ func Test_detectConfirm_confirm(t *testing.T) { err = os.MkdirAll(javaDir, 0700) require.NoError(t, err) + t.Chdir(dir) + tests := []struct { name string detection []appdetect.Project diff --git a/cli/azd/pkg/azdext/process_darwin.go b/cli/azd/pkg/azdext/process_darwin.go index 68ab14d04b2..55a42898c6e 100644 --- a/cli/azd/pkg/azdext/process_darwin.go +++ b/cli/azd/pkg/azdext/process_darwin.go @@ -66,7 +66,7 @@ func findProcessByNameOS(name string) []ProcessInfo { nameLower := strings.ToLower(name) var results []ProcessInfo - for _, line := range strings.Split(string(output), "\n") { + for line := range strings.SplitSeq(string(output), "\n") { line = strings.TrimSpace(line) if line == "" { continue diff --git a/cli/azd/pkg/templates/path.go b/cli/azd/pkg/templates/path.go index 4201b00ac03..53e4238f5ca 100644 --- a/cli/azd/pkg/templates/path.go +++ b/cli/azd/pkg/templates/path.go @@ -6,6 +6,7 @@ package templates import ( "fmt" "log" + "net/url" "os" "path/filepath" "strings" @@ -47,7 +48,7 @@ func Absolute(path string) (string, error) { // reference (./..., ../..., or an absolute path). Bare names like "my-template" or // "owner/repo" always resolve to GitHub URLs, even if a same-named local directory exists, // to avoid silently overriding remote template resolution. - if looksLikeLocalPath(path) { + if LooksLikeLocalPath(path) { // Use Lstat to reject symlinks consistently with copyLocalTemplate. if info, err := os.Lstat(path); err == nil { if info.Mode()&os.ModeSymlink != 0 { @@ -97,9 +98,9 @@ func IsLocalPath(resolvedPath string) bool { return !isRemoteURI(resolvedPath) } -// looksLikeLocalPath returns true if the path appears to be an explicit local filesystem reference +// LooksLikeLocalPath returns true if the path appears to be an explicit local filesystem reference // (e.g., ".", "..", starts with ./, ../, or is an absolute path). -func looksLikeLocalPath(path string) bool { +func LooksLikeLocalPath(path string) bool { return path == "." || path == ".." || strings.HasPrefix(path, "./") || @@ -108,3 +109,74 @@ func looksLikeLocalPath(path string) bool { strings.HasPrefix(path, `.\`) || filepath.IsAbs(path) } + +// DeriveDirectoryName extracts a directory name from a template path, +// following git clone conventions. For example: +// +// - "todo-nodejs-mongo" → "todo-nodejs-mongo" +// - "Azure-Samples/todo-nodejs-mongo" → "todo-nodejs-mongo" +// - "https://github.com/Azure-Samples/todo-nodejs-mongo" → "todo-nodejs-mongo" +// - "https://github.com/Azure-Samples/todo-nodejs-mongo.git" → "todo-nodejs-mongo" +// - "../my-template" → "my-template" +func DeriveDirectoryName(templatePath string) string { + path := strings.TrimSpace(templatePath) + path = strings.TrimRight(path, "/") + + // Strip .git suffix (like git clone does) + path = strings.TrimSuffix(path, ".git") + + var name string + + // For remote URIs, extract the last path segment from the URL + if isRemoteURI(path) { + // Handle git@host:owner/repo format + if strings.HasPrefix(path, "git@") { + if idx := strings.LastIndex(path, ":"); idx >= 0 { + path = path[idx+1:] + } + } + + // Strip query string and fragment from the URL path so that + // "repo?ref=main" or "repo#section" resolve to just "repo". + if parsed, err := url.Parse(path); err == nil { + path = parsed.Path + // url.Parse may leave the path empty for scheme-less remnants; + // fall back to the original when that happens. + if path == "" { + path = parsed.Opaque + } + } + + // Take the last path segment + if idx := strings.LastIndex(path, "/"); idx >= 0 { + name = path[idx+1:] + } else { + name = path + } + } else { + // For local paths and bare names, use the last path component + name = filepath.Base(path) + } + + // Strip .git suffix from the extracted name (handles cases where the + // early TrimSuffix missed it, e.g. "repo.git?ref=main") + name = strings.TrimSuffix(name, ".git") + + // Reject unsafe directory names that could cause path traversal + if name == "." || name == ".." || name == "" { + // Fall back to a sanitized version of the full path + name = strings.NewReplacer("/", "-", "\\", "-", ":", "-").Replace( + strings.TrimRight(templatePath, "/")) + // Trim leading dots and dashes from the sanitized name + name = strings.TrimLeft(name, ".-") + } + + // Final safety: if the name is still empty or unsafe after sanitization, + // use a generic fallback + if name == "" || name == "." || name == ".." { + log.Printf("DeriveDirectoryName: input %q fell back to default %q", templatePath, "new-project") + name = "new-project" + } + + return name +} diff --git a/cli/azd/pkg/templates/path_test.go b/cli/azd/pkg/templates/path_test.go index a670f0e4754..b2b131204a0 100644 --- a/cli/azd/pkg/templates/path_test.go +++ b/cli/azd/pkg/templates/path_test.go @@ -198,6 +198,132 @@ func Test_Absolute_OwnerRepoResolvesToGitHub(t *testing.T) { require.Equal(t, "https://github.com/owner/repo", result) } +func Test_DeriveDirectoryName(t *testing.T) { + tests := []struct { + name string + input string + expected string + }{ + { + name: "BareRepoName", + input: "todo-nodejs-mongo", + expected: "todo-nodejs-mongo", + }, + { + name: "OwnerRepo", + input: "Azure-Samples/todo-nodejs-mongo", + expected: "todo-nodejs-mongo", + }, + { + name: "HttpsURL", + input: "https://github.com/Azure-Samples/todo-nodejs-mongo", + expected: "todo-nodejs-mongo", + }, + { + name: "HttpsURLWithDotGit", + input: "https://github.com/Azure-Samples/todo-nodejs-mongo.git", + expected: "todo-nodejs-mongo", + }, + { + name: "HttpsURLTrailingSlash", + input: "https://github.com/Azure-Samples/todo-nodejs-mongo/", + expected: "todo-nodejs-mongo", + }, + { + name: "GitAtURI", + input: "git@github.com:Azure-Samples/todo-nodejs-mongo.git", + expected: "todo-nodejs-mongo", + }, + { + name: "SshURL", + input: "ssh://git@github.com/Azure-Samples/todo-nodejs-mongo.git", + expected: "todo-nodejs-mongo", + }, + { + name: "GitProtocolURL", + input: "git://github.com/Azure-Samples/todo-nodejs-mongo.git", + expected: "todo-nodejs-mongo", + }, + { + name: "RelativePath", + input: "../my-template", + expected: "my-template", + }, + { + name: "DotSlashRelativePath", + input: "./my-template", + expected: "my-template", + }, + { + name: "AbsolutePath", + input: "/home/user/projects/my-template", + expected: "my-template", + }, + { + name: "BareNameTrailingSlash", + input: "todo-nodejs-mongo/", + expected: "todo-nodejs-mongo", + }, + { + name: "NestedLocalPath", + input: "../projects/my-template", + expected: "my-template", + }, + { + name: "FileURL", + input: "file:///home/user/my-template", + expected: "my-template", + }, + { + name: "DotDotTraversalIsSanitized", + input: "owner/..", + expected: "owner-..", + }, + { + name: "HttpsURLWithQueryParams", + input: "https://github.com/user/repo?ref=main", + expected: "repo", + }, + { + name: "HttpsURLWithFragment", + input: "https://github.com/user/repo#section", + expected: "repo", + }, + { + name: "HttpsURLWithQueryAndFragment", + input: "https://github.com/user/repo?ref=main#readme", + expected: "repo", + }, + { + name: "HttpsURLWithDotGitAndQuery", + input: "https://github.com/user/repo.git?ref=main", + expected: "repo", + }, + { + name: "BareDotDotFallsBackToDefault", + input: "..", + expected: "new-project", + }, + { + name: "BareDotFallsBackToDefault", + input: ".", + expected: "new-project", + }, + { + name: "EmptyString", + input: "", + expected: "new-project", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := DeriveDirectoryName(tt.input) + require.Equal(t, tt.expected, result) + }) + } +} + func Test_IsLocalPath(t *testing.T) { tests := []struct { name string diff --git a/cli/azd/test/functional/init_test.go b/cli/azd/test/functional/init_test.go index c94a0f73e42..48d03c719b1 100644 --- a/cli/azd/test/functional/init_test.go +++ b/cli/azd/test/functional/init_test.go @@ -280,33 +280,39 @@ func Test_CLI_Init_CanUseTemplate(t *testing.T) { ) require.NoError(t, err) + // Template init now creates a subdirectory derived from the template name. + projectDir := filepath.Join(dir, "cosmos-dotnet-core-todo-app") + // While `init` uses git behind the scenes to pull a template, we don't want to bring // the history over in the new git repository. cmdRun := exec.NewCommandRunner(nil) - cmdRes, err := cmdRun.Run(ctx, exec.NewRunArgs("git", "-C", dir, "log", "--oneline", "-n", "1")) + cmdRes, err := cmdRun.Run(ctx, exec.NewRunArgs("git", "-C", projectDir, "log", "--oneline", "-n", "1")) require.Error(t, err) require.Contains(t, cmdRes.Stderr, "does not have any commits yet") // Ensure the project was initialized from the template by checking that a file from the template is present. - require.FileExists(t, filepath.Join(dir, "README.md")) + require.FileExists(t, filepath.Join(projectDir, "README.md")) } // Test_CLI_Init_WithCwdAutoCreate tests the automatic directory creation when using -C/--cwd flag. func Test_CLI_Init_WithCwdAutoCreate(t *testing.T) { tests := []struct { - name string - subDir string // subdirectory to create within temp dir (using -C flag) - args []string + name string + subDir string // subdirectory to create within temp dir (using -C flag) + templateDir string // directory name derived from template (like git clone) + args []string }{ { - name: "single level directory", - subDir: "new-project", - args: []string{"init", "-t", "azure-samples/todo-nodejs-mongo", "--no-prompt", "-e", "test-env"}, + name: "single level directory", + subDir: "new-project", + templateDir: "todo-nodejs-mongo", + args: []string{"init", "-t", "azure-samples/todo-nodejs-mongo", "--no-prompt", "-e", "test-env"}, }, { - name: "nested directory", - subDir: "parent/child/project", - args: []string{"init", "-t", "azure-samples/todo-nodejs-mongo", "--no-prompt", "-e", "test-env"}, + name: "nested directory", + subDir: "parent/child/project", + templateDir: "todo-nodejs-mongo", + args: []string{"init", "-t", "azure-samples/todo-nodejs-mongo", "--no-prompt", "-e", "test-env"}, }, } @@ -334,8 +340,9 @@ func Test_CLI_Init_WithCwdAutoCreate(t *testing.T) { // Verify the directory was created require.DirExists(t, targetDir) - // Verify that the template was initialized in the created directory - require.FileExists(t, filepath.Join(targetDir, azdcontext.ProjectFileName)) + // Verify that the template was initialized in the template subdirectory + // (init -t creates a directory named after the template, like git clone) + require.FileExists(t, filepath.Join(targetDir, tt.templateDir, azdcontext.ProjectFileName)) }) } } diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml index 447d9c8e55c..3082aefc0f6 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46718 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Brazil","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "46718" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:41:48 GMT + - Thu, 09 Apr 2026 17:39:36 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d0813657-75bb-4722-bfdb-42a3f509a9d0 + - 04013da7-9d9f-40f0-81ee-de4880f655e3 X-Ms-Routing-Request-Id: - - WESTUS:20250702T044149Z:d0813657-75bb-4722-bfdb-42a3f509a9d0 + - EASTUS:20260409T173937Z:04013da7-9d9f-40f0-81ee-de4880f655e3 X-Msedge-Ref: - - 'Ref A: 05055738EBBB4C84A8C121C6123E7EB3 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:41:47Z' + - 'Ref A: 98F0F536C0DF4807BC7807FDDE240B3B Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:36Z' status: 200 OK code: 200 - duration: 1.91864275s + duration: 1.038158584s - id: 1 request: proto: HTTP/1.1 @@ -91,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -102,18 +102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1215187 + content_length: 960970 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZJda4MwFEB%2fi3mukKgto2%2bzN4VuS7LExM29FedELQqbw4%2fif19c6R9wD2VvF%2b65cDjcM0qbui3q72NbNLVuqqz%2bQtszeqGRNpE3j3XWt8%2fHz7aYicdsQFtEnDuH66RnY%2bKi1S%2bhmu66I2TjqGofMsg7ad6AGRlwCEMFJ5A43jNDMdchSB3vuH7%2fUISLpwh3AozlzJrBoWdl0vEy9wTItYjIqzInFhm8YZXSMU0HUT5QplPMSnujLStdF00rRO9n72XaOPiLti%2b0HLmmntCH0YbBYkd4BHkgoBkUUJ8D83jJRg42mlW9JP4XqpeqC7%2fhJln9ZV1v9rnT9AM%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1215187" + - "960970" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:41:54 GMT + - Thu, 09 Apr 2026 17:39:41 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1aeabd2e-1f1c-4fcc-bddd-08e038097a96 + - d6a585b4-ae8e-4ded-9cc7-e89464c84205 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044154Z:1aeabd2e-1f1c-4fcc-bddd-08e038097a96 + - EASTUS:20260409T173941Z:d6a585b4-ae8e-4ded-9cc7-e89464c84205 X-Msedge-Ref: - - 'Ref A: BACCAF30D8EA473694ACC56C777B17FA Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:41:49Z' + - 'Ref A: E60B208F4B994FBC9377B581A217A68C Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:37Z' status: 200 OK code: 200 - duration: 5.351275591s + duration: 3.983015958s - id: 2 request: proto: HTTP/1.1 @@ -158,10 +158,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJda4MwFEB%2Fi3mukKgto2%2BzN4VuS7LExM29FedELQqbw4%2Fif19c6R9wD2VvF%2B65cDjcM0qbui3q72NbNLVuqqz%2BQtszeqGRNpE3j3XWt8%2FHz7aYicdsQFtEnDuH66RnY%2BKi1S%2Bhmu66I2TjqGofMsg7ad6AGRlwCEMFJ5A43jNDMdchSB3vuH7%2FUISLpwh3AozlzJrBoWdl0vEy9wTItYjIqzInFhm8YZXSMU0HUT5QplPMSnujLStdF00rRO9n72XaOPiLti%2B0HLmmntCH0YbBYkd4BHkgoBkUUJ8D83jJRg42mlW9JP4XqpeqC7%2FhJln9ZV1v9rnT9AM%3D&api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%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: 1539430 + content_length: 855508 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJNboMwEIXPgtdEMoRKFbuacRZtbNdmTJTsIkojArKllohAxN0LTXuILEfvW7yfuZHSu652l2NXe4e%2bqdw3SW9kx3O0eUxSd2nbkPCX5VwEV1279%2bNXVy%2f8WzWQlETBcyBxfxXjfkXCX8L4%2fl%2bLYhqYZsMEnHptDyCsTiQwZqAFTYuNsJxKZKCxyCR%2bfJpIqm1OewV25ppBYfkkxpIK0Gsx6kRkEds1xppCWnV%2b5QgHLhuTKfCDAR4rPA0zm0gsV2QK%2f5I8pPV76%2fMID1v7%2bv5A0%2fQD\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1539430" + - "855508" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:42:00 GMT + - Thu, 09 Apr 2026 17:39:44 GMT Expires: - "-1" Pragma: @@ -192,20 +192,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 77f93180-d2a8-430e-a2bd-d8cadef3574c + - e9479b7a-43c0-472a-b3d2-d9addedffd00 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044201Z:77f93180-d2a8-430e-a2bd-d8cadef3574c + - EASTUS:20260409T173944Z:e9479b7a-43c0-472a-b3d2-d9addedffd00 X-Msedge-Ref: - - 'Ref A: B19A9F62FC254A5C8120AC0D0CDAA038 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:41:55Z' + - 'Ref A: 10B7E3D83B41424BAEEB24B49C6B9CA5 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:42Z' status: 200 OK code: 200 - duration: 6.297725912s + duration: 2.753178916s - id: 3 request: proto: HTTP/1.1 @@ -225,10 +225,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJNboMwEIXPgtdEMoRKFbuacRZtbNdmTJTsIkojArKllohAxN0LTXuILEfvW7yfuZHSu652l2NXe4e%2Bqdw3SW9kx3O0eUxSd2nbkPCX5VwEV1279%2BNXVy%2F8WzWQlETBcyBxfxXjfkXCX8L4%2Fl%2BLYhqYZsMEnHptDyCsTiQwZqAFTYuNsJxKZKCxyCR%2BfJpIqm1OewV25ppBYfkkxpIK0Gsx6kRkEds1xppCWnV%2B5QgHLhuTKfCDAR4rPA0zm0gsV2QK%2F5I8pPV76%2FMID1v7%2Bv5A0%2FQD&api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -236,18 +236,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 11506 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKd0XmQeSMYJKOocEhQY4%2bno7Orn4gBkzc2dHP0QVdEGISXC%2bEawzRUlsLAA%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "11506" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:42:02 GMT + - Thu, 09 Apr 2026 17:39:45 GMT Expires: - "-1" Pragma: @@ -259,20 +259,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 8cd81b88-0321-4e29-ba6c-821b7036a030 + - 73570118-9b22-4b00-ba43-1af4ba975bfe X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044202Z:8cd81b88-0321-4e29-ba6c-821b7036a030 + - EASTUS:20260409T173946Z:73570118-9b22-4b00-ba43-1af4ba975bfe X-Msedge-Ref: - - 'Ref A: BC1071F542954DDBA4239C5E6437F718 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:42:01Z' + - 'Ref A: 4ADE2C8837174A209F3B72C3213E1D7B Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:45Z' status: 200 OK code: 200 - duration: 1.199618621s + duration: 1.482697292s - id: 4 request: proto: HTTP/1.1 @@ -292,10 +292,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKd0XmQeSMYJKOocEhQY4%2Bno7Orn4gBkzc2dHP0QVdEGISXC%2BEawzRUlsLAA%3D%3D&api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -303,18 +303,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 144081 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "144081" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:42:04 GMT + - Thu, 09 Apr 2026 17:39:46 GMT Expires: - "-1" Pragma: @@ -326,32 +326,99 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 728441a4-5642-414f-9bf8-00909eac1073 + - e168268b-0281-4d9f-9bca-4cfccdc72577 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044205Z:728441a4-5642-414f-9bf8-00909eac1073 + - EASTUS2:20260409T173947Z:e168268b-0281-4d9f-9bca-4cfccdc72577 X-Msedge-Ref: - - 'Ref A: 2F776CE6DDA9417A8DCC77210FA8ADEE Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:42:02Z' + - 'Ref A: 7AEB5B670C6D4AACB164D804C8912192 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:46Z' status: 200 OK code: 200 - duration: 2.517349146s + duration: 742.040333ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4491 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-l8e51f4","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.36.1.42791","templateHash":"3905344247269538911"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-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.36.1.42791","templateHash":"3918960801526421212"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"}}' + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:39:46 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 690fa3436de41f0b3b19707df0e3e88f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d0bc93f5-42dd-446a-8ed5-79db2f69fb13 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T173947Z:d0bc93f5-42dd-446a-8ed5-79db2f69fb13 + X-Msedge-Ref: + - 'Ref A: 4C49B47190D74BE6B4BB37444095731F Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:47Z' + status: 200 OK + code: 200 + duration: 450.566666ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5035 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d7e40f4","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"}}' form: {} headers: Accept: @@ -361,14 +428,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4491" + - "5035" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302/validate?api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372/validate?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -376,18 +443,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2014 + content_length: 2118 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"properties":{"templateHash":"3905344247269538911","parameters":{"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:05Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-07-02T04:42:05.6295723Z","duration":"PT0S","correlationId":"5811d3caf85f5593005f25060a12b71a","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l8e51f4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:49Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:39:49.3612775Z","duration":"PT0S","correlationId":"690fa3436de41f0b3b19707df0e3e88f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7e40f4"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2014" + - "2118" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:42:06 GMT + - Thu, 09 Apr 2026 17:39:49 GMT Expires: - "-1" Pragma: @@ -399,32 +466,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - dd813875-5603-4dad-8c71-7757041d6edd + - f1b2ff53-9bd6-4d50-bd8b-146d1aaf536e X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044207Z:dd813875-5603-4dad-8c71-7757041d6edd + - EASTUS2:20260409T173950Z:f1b2ff53-9bd6-4d50-bd8b-146d1aaf536e X-Msedge-Ref: - - 'Ref A: 44AB4CE02BFB4B85BAE884227176C461 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:42:05Z' + - 'Ref A: A1ECC1C0F01E42E48F1C48B3070A3437 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:49Z' status: 200 OK code: 200 - duration: 2.075760719s - - id: 6 + duration: 983.406209ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4491 + content_length: 5035 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-l8e51f4","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.36.1.42791","templateHash":"3905344247269538911"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-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.36.1.42791","templateHash":"3918960801526421212"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d7e40f4","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"}}' form: {} headers: Accept: @@ -434,14 +501,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4491" + - "5035" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -449,20 +516,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1601 + content_length: 1705 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"properties":{"templateHash":"3905344247269538911","parameters":{"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-07-02T04:42:07.6882318Z","duration":"PT0.0001094S","correlationId":"5811d3caf85f5593005f25060a12b71a","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l8e51f4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:39:50.4421663Z","duration":"PT0.0002518S","correlationId":"690fa3436de41f0b3b19707df0e3e88f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7e40f4"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302/operationStatuses/08584501755577741287?api-version=2021-04-01&t=638870281311103710&c=MIIHpTCCBo2gAwIBAgITOgWZuFmLREgOyTdeugAEBZm4WTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE5MTQyMjI3WhcNMjUxMDE2MTQyMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPxDlNdj6r6H0vTzKfz228nqLQPXYSxPqEGQSSSCczQcCX3f_Xtnvc-lFdoleay-OVQlgfbWiMkGazl2q7FVj9BZUHJ3KXFg833nlMDzzIkfrA17t4t3OW-6po21aPw9TdEBtH-GReYxdd8YmK-hHhKfpllLkKKn29Z8r3ecn-VJ1URRr4gV1Dnhd8h62eio4oVWmqq_9ITkiyfphE8gKB3n-2ZGTlftv1uEX4hpgnUbyhP4GBPp9Ni0RdYmpukMEr1-GI3W5OnXgKOvoCRB0HZQKU-5u630M-76UA_GFyALd1X_xQwHcCHKvtBzX5EEcQ4AOj_B540c3Mp0HnljQsECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRgocSx-jjjSuZiJXHuNlAhZPhmbjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAK5mT0Rrym5x1NF2yah7nxZLo1y0madgpRkCREZyGAoW02DZD68DX6wagq4RbcOr_MAlhvWOTjVB8J52ZIsydOGq5NSpxte9Cy10m7-zSXWMn0yNE8YUToarDNRzmshQ5pEBXhjU6kSMEvqeNG8Fr3KrDZEVieQc5By_ZV8F9vtuv90XjrjiLw1qOrPVVvUFOTx-JlUR4aErF4Jldd_YA0aWCiYbvu3Bd1vWtXdnrkJSX-natlKNqGimVnj86nKEao8ktK5pKaHq6C8vbOLeNreXRy5C2fC1tgiZ00V2pHuk1qbOdhlzTDv8G0HZLm_T7_s92OBqMAwBJ1uChKnQm6M&s=wg5gZ5Uxot8_NC_1_t9t9K3Y4BgdfuLIWacA-fTxwVdv5N2SkHB9P8SeBa1v8e634Mjq4frJK14kxgrM7KYNBLe_LnAVQhicL7Qoqi7PH9VETTKAxXvFuDVnT9lnEbSA1vTbiqwrN6e96z6eUI3wTcMcI9s_mB4cH5hmN_vTRSD9TAmw_n8ED1jGwGHtiGLkCVBHgf5Ww3D5PZyM8cfzWsFIeFlEf5qfzThMihB9yZDSCyokaOhRGnVawRF-W8SPLFaCs968InN38822jcNaXuh3diG9fPrplj5ebJYKmFG8pko9HIZp3LF2PVTySUKJCkLs8X9r3OXVvedOuECr0Q&h=M89aRB2jPWBclbaMuanlmVJ7CzK-sIs_JjdrJfa7E74 + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372/operationStatuses/08584258504950207295?api-version=2021-04-01&t=639113531912546546&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=s60y2eCQYTfcAgiBfclbu3UWBnB6MW_vo43BuuyYVx0jq2cl8OnwmJDM-9IGEiJGfLiROMnrTn32jojSggx-N9RW2Ew3y0NLt7CivQSuUcu9sNz4OWUo1rUGuYmm83SKSZAeCm3fg2AL84Pz49PUBAdnAZd8e9Acqyf9T_8F1mhjbQFYhBB1k0v6WXV-I1PpIZrdApD-0AqwpR8noOPJ6FlmjRfEQ32-aRYJCItikyJaCtHhnKX_Fetf0pLLmtPeD0GWWecRs-HF-nhkrm33DjM7tuF8WTIYhfNSnrDbpjdzcSEKXNzx5Z9egpFW_3bzuTWY3pVWZj99IjzxQVc5Lg&h=gDn894Pdc3yAfvIEhIoRC0gC4i_vn2plscz3cY6tI-k Cache-Control: - no-cache Content-Length: - - "1601" + - "1705" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:42:10 GMT + - Thu, 09 Apr 2026 17:39:50 GMT Expires: - "-1" Pragma: @@ -474,23 +541,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Deployment-Engine-Version: - - 1.387.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - b93d1a2b-047f-4afe-ade8-cc9c95ade613 + - 9e755339-5c4c-4e0a-a4b1-506d003d4df6 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044211Z:b93d1a2b-047f-4afe-ade8-cc9c95ade613 + - EASTUS:20260409T173951Z:9e755339-5c4c-4e0a-a4b1-506d003d4df6 X-Msedge-Ref: - - 'Ref A: A9611C5F00DB467E911294A4205C4DDE Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:42:07Z' + - 'Ref A: 11D0D92C0275444192EFB35343AFBE21 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:39:50Z' status: 201 Created code: 201 - duration: 3.788700784s - - id: 7 + duration: 1.171631041s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -509,10 +576,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302/operationStatuses/08584501755577741287?api-version=2021-04-01&t=638870281311103710&c=MIIHpTCCBo2gAwIBAgITOgWZuFmLREgOyTdeugAEBZm4WTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE5MTQyMjI3WhcNMjUxMDE2MTQyMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPxDlNdj6r6H0vTzKfz228nqLQPXYSxPqEGQSSSCczQcCX3f_Xtnvc-lFdoleay-OVQlgfbWiMkGazl2q7FVj9BZUHJ3KXFg833nlMDzzIkfrA17t4t3OW-6po21aPw9TdEBtH-GReYxdd8YmK-hHhKfpllLkKKn29Z8r3ecn-VJ1URRr4gV1Dnhd8h62eio4oVWmqq_9ITkiyfphE8gKB3n-2ZGTlftv1uEX4hpgnUbyhP4GBPp9Ni0RdYmpukMEr1-GI3W5OnXgKOvoCRB0HZQKU-5u630M-76UA_GFyALd1X_xQwHcCHKvtBzX5EEcQ4AOj_B540c3Mp0HnljQsECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRgocSx-jjjSuZiJXHuNlAhZPhmbjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAK5mT0Rrym5x1NF2yah7nxZLo1y0madgpRkCREZyGAoW02DZD68DX6wagq4RbcOr_MAlhvWOTjVB8J52ZIsydOGq5NSpxte9Cy10m7-zSXWMn0yNE8YUToarDNRzmshQ5pEBXhjU6kSMEvqeNG8Fr3KrDZEVieQc5By_ZV8F9vtuv90XjrjiLw1qOrPVVvUFOTx-JlUR4aErF4Jldd_YA0aWCiYbvu3Bd1vWtXdnrkJSX-natlKNqGimVnj86nKEao8ktK5pKaHq6C8vbOLeNreXRy5C2fC1tgiZ00V2pHuk1qbOdhlzTDv8G0HZLm_T7_s92OBqMAwBJ1uChKnQm6M&s=wg5gZ5Uxot8_NC_1_t9t9K3Y4BgdfuLIWacA-fTxwVdv5N2SkHB9P8SeBa1v8e634Mjq4frJK14kxgrM7KYNBLe_LnAVQhicL7Qoqi7PH9VETTKAxXvFuDVnT9lnEbSA1vTbiqwrN6e96z6eUI3wTcMcI9s_mB4cH5hmN_vTRSD9TAmw_n8ED1jGwGHtiGLkCVBHgf5Ww3D5PZyM8cfzWsFIeFlEf5qfzThMihB9yZDSCyokaOhRGnVawRF-W8SPLFaCs968InN38822jcNaXuh3diG9fPrplj5ebJYKmFG8pko9HIZp3LF2PVTySUKJCkLs8X9r3OXVvedOuECr0Q&h=M89aRB2jPWBclbaMuanlmVJ7CzK-sIs_JjdrJfa7E74 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372/operationStatuses/08584258504950207295?api-version=2021-04-01&t=639113531912546546&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=s60y2eCQYTfcAgiBfclbu3UWBnB6MW_vo43BuuyYVx0jq2cl8OnwmJDM-9IGEiJGfLiROMnrTn32jojSggx-N9RW2Ew3y0NLt7CivQSuUcu9sNz4OWUo1rUGuYmm83SKSZAeCm3fg2AL84Pz49PUBAdnAZd8e9Acqyf9T_8F1mhjbQFYhBB1k0v6WXV-I1PpIZrdApD-0AqwpR8noOPJ6FlmjRfEQ32-aRYJCItikyJaCtHhnKX_Fetf0pLLmtPeD0GWWecRs-HF-nhkrm33DjM7tuF8WTIYhfNSnrDbpjdzcSEKXNzx5Z9egpFW_3bzuTWY3pVWZj99IjzxQVc5Lg&h=gDn894Pdc3yAfvIEhIoRC0gC4i_vn2plscz3cY6tI-k method: GET response: proto: HTTP/2.0 @@ -531,7 +598,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:11 GMT + - Thu, 09 Apr 2026 17:40:50 GMT Expires: - "-1" Pragma: @@ -543,21 +610,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 11e7cd8a-09cf-4ae9-acc1-207a520485db + - 096555ba-2a80-4a93-8e48-a005527d6527 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044312Z:11e7cd8a-09cf-4ae9-acc1-207a520485db + - EASTUS2:20260409T174051Z:096555ba-2a80-4a93-8e48-a005527d6527 X-Msedge-Ref: - - 'Ref A: 8EF3BB2C40854773A2692A649DE17B06 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:11Z' + - 'Ref A: A4542FE804C643549E0780D36741B519 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:40:51Z' status: 200 OK code: 200 - duration: 355.631716ms - - id: 8 + duration: 70.945792ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -576,10 +643,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -587,18 +654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2555 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"properties":{"templateHash":"3905344247269538911","parameters":{"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-07-02T04:42:44.439408Z","duration":"PT36.7511762S","correlationId":"5811d3caf85f5593005f25060a12b71a","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l8e51f4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stluhyslxgyhqae"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:40:22.2441301Z","duration":"PT31.8019638S","correlationId":"690fa3436de41f0b3b19707df0e3e88f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7e40f4"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stpjeoa2h4bzroq"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2555" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:11 GMT + - Thu, 09 Apr 2026 17:40:50 GMT Expires: - "-1" Pragma: @@ -610,21 +677,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 78b9b8e3-2d05-4e19-a5e6-f211f05947a3 + - e6447a93-b1c3-4b6b-8254-fdb6ef661645 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044312Z:78b9b8e3-2d05-4e19-a5e6-f211f05947a3 + - EASTUS:20260409T174051Z:e6447a93-b1c3-4b6b-8254-fdb6ef661645 X-Msedge-Ref: - - 'Ref A: C857F1F762AF4748A19399A205E41460 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:12Z' + - 'Ref A: FC95552FB3FA41B5A9948C1D80C14070 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:40:51Z' status: 200 OK code: 200 - duration: 370.615754ms - - id: 9 + duration: 100.572458ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -645,10 +712,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l8e51f4%27&api-version=2021-04-01 + - 690fa3436de41f0b3b19707df0e3e88f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d7e40f4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -656,18 +723,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 429 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","name":"rg-azdtest-l8e51f4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","DeleteAfter":"2025-07-02T05:42:07Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","name":"rg-azdtest-d7e40f4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","DeleteAfter":"2026-04-09T18:39:50Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "429" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:12 GMT + - Thu, 09 Apr 2026 17:40:51 GMT Expires: - "-1" Pragma: @@ -679,21 +746,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5811d3caf85f5593005f25060a12b71a + - 690fa3436de41f0b3b19707df0e3e88f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 22cf4696-e82f-4360-984a-787a9b444909 + - 6d36bdaa-596e-441a-88c5-7f5832bdb5b1 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044312Z:22cf4696-e82f-4360-984a-787a9b444909 + - EASTUS:20260409T174052Z:6d36bdaa-596e-441a-88c5-7f5832bdb5b1 X-Msedge-Ref: - - 'Ref A: 6DD553DCC7C34EEF9769A13F6308A70F Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:12Z' + - 'Ref A: AC1C087ABAD046279016B5D63106D42D Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:40:51Z' status: 200 OK code: 200 - duration: 57.51746ms - - id: 10 + duration: 249.089333ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -714,10 +781,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 1db2580f9e98da8f80a9597225887d27 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -725,18 +792,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1217743 + content_length: 963717 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZJda4MwFEB%2fi3mukKgto2%2bzN4VuS7LExM29FedELQqbw4%2fif19c6R9wD2VvF%2b65cDjcM0qbui3q72NbNLVuqqz%2bQtszeqGRNpE3j3XWt8%2fHz7aYicdsQFtEnDuH66RnY%2bKi1S%2bhmu66I2TjqGofMsg7ad6AGRlwCEMFJ5A43jNDMdchSB3vuH7%2fUISLpwh3AozlzJrBoWdl0vEy9wTItYjIqzInFhm8YZXSMU0HUT5QplPMSnujLStdF00rRO9n72XaOPiLti%2b0HLmmntCH0YbBYkd4BHkgoBkUUJ8D83jJRg42mlW9JP4XqpeqC7%2fhJln9ZV1v9rnT9AM%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","location":"eastus2","name":"azdtest-l8e51f4-1751431302","properties":{"correlationId":"5811d3caf85f5593005f25060a12b71a","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceName":"rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT36.7511762S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stluhyslxgyhqae"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"3905344247269538911","timestamp":"2025-07-02T04:42:44.439408Z"},"tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","location":"eastus2","name":"azdtest-d7e40f4-1775756372","properties":{"correlationId":"690fa3436de41f0b3b19707df0e3e88f","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceName":"rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT31.8019638S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stpjeoa2h4bzroq"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:40:22.2441301Z"},"tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1217743" + - "963717" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:19 GMT + - Thu, 09 Apr 2026 17:40:55 GMT Expires: - "-1" Pragma: @@ -748,21 +815,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 + - 1db2580f9e98da8f80a9597225887d27 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - 30c9009c-d35d-41c0-991a-4a8e9d50b3b3 + - 0e34ae69-13ef-4607-b7ee-7f19cbfd1049 X-Ms-Routing-Request-Id: - - WESTUS:20250702T044319Z:30c9009c-d35d-41c0-991a-4a8e9d50b3b3 + - EASTUS:20260409T174056Z:0e34ae69-13ef-4607-b7ee-7f19cbfd1049 X-Msedge-Ref: - - 'Ref A: 5B19F13A5B194A7C8DFA8A343577CEB7 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:14Z' + - 'Ref A: 8F99B4448714456292D96D7E5572C023 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:40:53Z' status: 200 OK code: 200 - duration: 6.005450872s - - id: 11 + duration: 3.769486375s + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -781,10 +848,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJda4MwFEB%2Fi3mukKgto2%2BzN4VuS7LExM29FedELQqbw4%2Fif19c6R9wD2VvF%2B65cDjcM0qbui3q72NbNLVuqqz%2BQtszeqGRNpE3j3XWt8%2FHz7aYicdsQFtEnDuH66RnY%2BKi1S%2Bhmu66I2TjqGofMsg7ad6AGRlwCEMFJ5A43jNDMdchSB3vuH7%2FUISLpwh3AozlzJrBoWdl0vEy9wTItYjIqzInFhm8YZXSMU0HUT5QplPMSnujLStdF00rRO9n72XaOPiLti%2B0HLmmntCH0YbBYkd4BHkgoBkUUJ8D83jJRg42mlW9JP4XqpeqC7%2FhJln9ZV1v9rnT9AM%3D&api-version=2021-04-01 + - 1db2580f9e98da8f80a9597225887d27 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -792,18 +859,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1539430 + content_length: 855506 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJNboMwEIXPgtdEMoRKFbuacRZtbNdmTJTsIkojArKllohAxN0LTXuILEfvW7yfuZHSu652l2NXe4e%2bqdw3SW9kx3O0eUxSd2nbkPCX5VwEV1279%2bNXVy%2f8WzWQlETBcyBxfxXjfkXCX8L4%2fl%2bLYhqYZsMEnHptDyCsTiQwZqAFTYuNsJxKZKCxyCR%2bfJpIqm1OewV25ppBYfkkxpIK0Gsx6kRkEds1xppCWnV%2b5QgHLhuTKfCDAR4rPA0zm0gsV2QK%2f5I8pPV76%2fMID1v7%2bv5A0%2fQD\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1539430" + - "855506" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:24 GMT + - Thu, 09 Apr 2026 17:40:58 GMT Expires: - "-1" Pragma: @@ -815,21 +882,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 + - 1db2580f9e98da8f80a9597225887d27 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 648bc539-9d0e-4bd5-9b88-48c4670131f1 + - 3daf08a3-ed2f-4ea4-bab7-93b3230b9f7d X-Ms-Routing-Request-Id: - - WESTUS:20250702T044325Z:648bc539-9d0e-4bd5-9b88-48c4670131f1 + - EASTUS2:20260409T174059Z:3daf08a3-ed2f-4ea4-bab7-93b3230b9f7d X-Msedge-Ref: - - 'Ref A: 4CB360B1D9864281944157802896A359 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:20Z' + - 'Ref A: CE6F0CF5E2CC4280B361B3384ADC38D2 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:40:57Z' status: 200 OK code: 200 - duration: 5.328519719s - - id: 12 + duration: 2.512745458s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -848,10 +915,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJNboMwEIXPgtdEMoRKFbuacRZtbNdmTJTsIkojArKllohAxN0LTXuILEfvW7yfuZHSu652l2NXe4e%2Bqdw3SW9kx3O0eUxSd2nbkPCX5VwEV1279%2BNXVy%2F8WzWQlETBcyBxfxXjfkXCX8L4%2Fl%2BLYhqYZsMEnHptDyCsTiQwZqAFTYuNsJxKZKCxyCR%2BfJpIqm1OewV25ppBYfkkxpIK0Gsx6kRkEds1xppCWnV%2B5QgHLhuTKfCDAR4rPA0zm0gsV2QK%2F5I8pPV76%2FMID1v7%2Bv5A0%2FQD&api-version=2021-04-01 + - 1db2580f9e98da8f80a9597225887d27 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -859,18 +926,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 11506 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKd0XmQeSMYJKOocEhQY4%2bno7Orn4gBkzc2dHP0QVdEGISXC%2bEawzRUlsLAA%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "11506" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:26 GMT + - Thu, 09 Apr 2026 17:41:00 GMT Expires: - "-1" Pragma: @@ -882,21 +949,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 + - 1db2580f9e98da8f80a9597225887d27 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6c9f7703-0822-4e76-aaa3-59116c514fa9 + - aad7e3d9-05a3-4aa0-bce9-5a9bc0acc5e6 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044327Z:6c9f7703-0822-4e76-aaa3-59116c514fa9 + - EASTUS2:20260409T174100Z:aad7e3d9-05a3-4aa0-bce9-5a9bc0acc5e6 X-Msedge-Ref: - - 'Ref A: 2CF2EADE57F24FEEB7435D453CBE1A86 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:25Z' + - 'Ref A: F5FD36224485410E8E6E90517C326A49 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:40:59Z' status: 200 OK code: 200 - duration: 1.231301678s - - id: 13 + duration: 1.358410125s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -915,10 +982,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKd0XmQeSMYJKOocEhQY4%2Bno7Orn4gBkzc2dHP0QVdEGISXC%2BEawzRUlsLAA%3D%3D&api-version=2021-04-01 + - 1db2580f9e98da8f80a9597225887d27 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -926,18 +993,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 144081 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "144081" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:28 GMT + - Thu, 09 Apr 2026 17:41:00 GMT Expires: - "-1" Pragma: @@ -949,21 +1016,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 + - 1db2580f9e98da8f80a9597225887d27 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 210a33bc-a968-4feb-a729-66fb677164ad + - 0eb4ff80-4887-4862-a52a-87b8ad818af7 X-Ms-Routing-Request-Id: - - WESTUS:20250702T044329Z:210a33bc-a968-4feb-a729-66fb677164ad + - EASTUS2:20260409T174101Z:0eb4ff80-4887-4862-a52a-87b8ad818af7 X-Msedge-Ref: - - 'Ref A: 55AE826593E341BEB718AA264FF6C923 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:27Z' + - 'Ref A: 783FF49EFCDE45A6ADB951D3C573B446 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:01Z' status: 200 OK code: 200 - duration: 1.974649289s - - id: 14 + duration: 718.192458ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -977,17 +1044,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 1db2580f9e98da8f80a9597225887d27 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -995,18 +1060,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2555 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"properties":{"templateHash":"3905344247269538911","parameters":{"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-07-02T04:42:44.439408Z","duration":"PT36.7511762S","correlationId":"5811d3caf85f5593005f25060a12b71a","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l8e51f4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stluhyslxgyhqae"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2555" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:28 GMT + - Thu, 09 Apr 2026 17:41:01 GMT Expires: - "-1" Pragma: @@ -1018,21 +1083,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - bb7d2641e1f08652ffabcb7f84144bc8 + - 1db2580f9e98da8f80a9597225887d27 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6cd6c769-3767-490f-aa0d-c872d9cec43e + - 6ef22586-85c6-4434-8173-5696f8ab01a6 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044329Z:6cd6c769-3767-490f-aa0d-c872d9cec43e + - EASTUS:20260409T174102Z:6ef22586-85c6-4434-8173-5696f8ab01a6 X-Msedge-Ref: - - 'Ref A: 6874ADD3C1054A93BFEDD7C10B6190AE Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:29Z' + - 'Ref A: 284E0756715D450D9EBCD1F1E6D0EE0E Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:01Z' status: 200 OK code: 200 - duration: 199.518771ms - - id: 15 + duration: 506.068042ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1053,10 +1118,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 1db2580f9e98da8f80a9597225887d27 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1064,18 +1129,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1217743 + content_length: 2746 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZJda4MwFEB%2fi3mukKgto2%2bzN4VuS7LExM29FedELQqbw4%2fif19c6R9wD2VvF%2b65cDjcM0qbui3q72NbNLVuqqz%2bQtszeqGRNpE3j3XWt8%2fHz7aYicdsQFtEnDuH66RnY%2bKi1S%2bhmu66I2TjqGofMsg7ad6AGRlwCEMFJ5A43jNDMdchSB3vuH7%2fUISLpwh3AozlzJrBoWdl0vEy9wTItYjIqzInFhm8YZXSMU0HUT5QplPMSnujLStdF00rRO9n72XaOPiLti%2b0HLmmntCH0YbBYkd4BHkgoBkUUJ8D83jJRg42mlW9JP4XqpeqC7%2fhJln9ZV1v9rnT9AM%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","location":"eastus2","name":"azdtest-l8e51f4-1751431302","properties":{"correlationId":"5811d3caf85f5593005f25060a12b71a","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceName":"rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT36.7511762S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stluhyslxgyhqae"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"3905344247269538911","timestamp":"2025-07-02T04:42:44.439408Z"},"tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:40:22.2441301Z","duration":"PT31.8019638S","correlationId":"690fa3436de41f0b3b19707df0e3e88f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7e40f4"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stpjeoa2h4bzroq"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1217743" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:37 GMT + - Thu, 09 Apr 2026 17:41:01 GMT Expires: - "-1" Pragma: @@ -1087,21 +1152,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 1db2580f9e98da8f80a9597225887d27 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3b443234-cafb-4c7b-af4e-2f0fbf52490e + - 79a8203b-98da-45ad-864a-61c25c09978c X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044338Z:3b443234-cafb-4c7b-af4e-2f0fbf52490e + - EASTUS:20260409T174102Z:79a8203b-98da-45ad-864a-61c25c09978c X-Msedge-Ref: - - 'Ref A: 238125277E1040CABEDF927BF001D932 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:33Z' + - 'Ref A: 622284D265834B6BB9508A76553F623A Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:02Z' status: 200 OK code: 200 - duration: 5.024428938s - - id: 16 + duration: 92.783625ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1115,15 +1180,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJda4MwFEB%2Fi3mukKgto2%2BzN4VuS7LExM29FedELQqbw4%2Fif19c6R9wD2VvF%2B65cDjcM0qbui3q72NbNLVuqqz%2BQtszeqGRNpE3j3XWt8%2FHz7aYicdsQFtEnDuH66RnY%2BKi1S%2Bhmu66I2TjqGofMsg7ad6AGRlwCEMFJ5A43jNDMdchSB3vuH7%2FUISLpwh3AozlzJrBoWdl0vEy9wTItYjIqzInFhm8YZXSMU0HUT5QplPMSnujLStdF00rRO9n72XaOPiLti%2B0HLmmntCH0YbBYkd4BHkgoBkUUJ8D83jJRg42mlW9JP4XqpeqC7%2FhJln9ZV1v9rnT9AM%3D&api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1131,18 +1198,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1539430 + content_length: 963717 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJNboMwEIXPgtdEMoRKFbuacRZtbNdmTJTsIkojArKllohAxN0LTXuILEfvW7yfuZHSu652l2NXe4e%2bqdw3SW9kx3O0eUxSd2nbkPCX5VwEV1279%2bNXVy%2f8WzWQlETBcyBxfxXjfkXCX8L4%2fl%2bLYhqYZsMEnHptDyCsTiQwZqAFTYuNsJxKZKCxyCR%2bfJpIqm1OewV25ppBYfkkxpIK0Gsx6kRkEds1xppCWnV%2b5QgHLhuTKfCDAR4rPA0zm0gsV2QK%2f5I8pPV76%2fMID1v7%2bv5A0%2fQD\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","location":"eastus2","name":"azdtest-d7e40f4-1775756372","properties":{"correlationId":"690fa3436de41f0b3b19707df0e3e88f","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceName":"rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT31.8019638S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stpjeoa2h4bzroq"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:40:22.2441301Z"},"tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1539430" + - "963717" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:44 GMT + - Thu, 09 Apr 2026 17:41:07 GMT Expires: - "-1" Pragma: @@ -1154,21 +1221,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - ea2bc2f0-3878-41b6-b3b1-9047b56051a0 + - 45b395fa-dd6f-47a5-aba3-4a0e09655f22 X-Ms-Routing-Request-Id: - - WESTUS:20250702T044344Z:ea2bc2f0-3878-41b6-b3b1-9047b56051a0 + - EASTUS:20260409T174107Z:45b395fa-dd6f-47a5-aba3-4a0e09655f22 X-Msedge-Ref: - - 'Ref A: C88E7F190DA34917B91790611256140F Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:38Z' + - 'Ref A: 51BCF950A1F7413E8CD2E3B32DCC4C8C Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:04Z' status: 200 OK code: 200 - duration: 6.057082477s - - id: 17 + duration: 3.831178083s + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1187,10 +1254,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZJNboMwEIXPgtdEMoRKFbuacRZtbNdmTJTsIkojArKllohAxN0LTXuILEfvW7yfuZHSu652l2NXe4e%2Bqdw3SW9kx3O0eUxSd2nbkPCX5VwEV1279%2BNXVy%2F8WzWQlETBcyBxfxXjfkXCX8L4%2Fl%2BLYhqYZsMEnHptDyCsTiQwZqAFTYuNsJxKZKCxyCR%2BfJpIqm1OewV25ppBYfkkxpIK0Gsx6kRkEds1xppCWnV%2B5QgHLhuTKfCDAR4rPA0zm0gsV2QK%2F5I8pPV76%2FMID1v7%2Bv5A0%2FQD&api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1198,18 +1265,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 11506 + content_length: 855506 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKd0XmQeSMYJKOocEhQY4%2bno7Orn4gBkzc2dHP0QVdEGISXC%2bEawzRUlsLAA%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "11506" + - "855506" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:45 GMT + - Thu, 09 Apr 2026 17:41:10 GMT Expires: - "-1" Pragma: @@ -1221,21 +1288,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0ffdf3cd-712b-4f72-9202-df624dd95101 + - aa69a7d2-780a-4017-8ea4-bf743eac431a X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044346Z:0ffdf3cd-712b-4f72-9202-df624dd95101 + - EASTUS:20260409T174111Z:aa69a7d2-780a-4017-8ea4-bf743eac431a X-Msedge-Ref: - - 'Ref A: F4D1C42B9EE6488F85D7A1114E9BE595 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:45Z' + - 'Ref A: BBA6E4B4D9CD4BFC95EFB1EB0A080FDE Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:08Z' status: 200 OK code: 200 - duration: 1.173984734s - - id: 18 + duration: 2.9493985s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1254,10 +1321,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKd0XmQeSMYJKOocEhQY4%2Bno7Orn4gBkzc2dHP0QVdEGISXC%2BEawzRUlsLAA%3D%3D&api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1265,18 +1332,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 144081 + content_length: 515084 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "144081" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:48 GMT + - Thu, 09 Apr 2026 17:41:11 GMT Expires: - "-1" Pragma: @@ -1288,21 +1355,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 150cad27-d26c-40cf-91ae-d3488c0daeac + - 35a7b076-c534-4f8e-a76f-03e6b521e4ff X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044348Z:150cad27-d26c-40cf-91ae-d3488c0daeac + - EASTUS2:20260409T174112Z:35a7b076-c534-4f8e-a76f-03e6b521e4ff X-Msedge-Ref: - - 'Ref A: 966582507AFC448C938C2835C2B96BD7 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:46Z' + - 'Ref A: 1C22383E0B324457B631FEDB359B2F0C Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:11Z' status: 200 OK code: 200 - duration: 2.521603052s - - id: 19 + duration: 1.319315375s + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1316,17 +1383,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1334,18 +1399,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2555 + content_length: 415580 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"properties":{"templateHash":"3905344247269538911","parameters":{"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-07-02T04:42:44.439408Z","duration":"PT36.7511762S","correlationId":"5811d3caf85f5593005f25060a12b71a","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l8e51f4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stluhyslxgyhqae"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2555" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:48 GMT + - Thu, 09 Apr 2026 17:41:12 GMT Expires: - "-1" Pragma: @@ -1357,21 +1422,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b7fa5ee2-51be-4d5f-9f1b-46a4d77cf493 + - b3e69f11-1c97-4025-9694-783c37270094 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044349Z:b7fa5ee2-51be-4d5f-9f1b-46a4d77cf493 + - EASTUS2:20260409T174113Z:b3e69f11-1c97-4025-9694-783c37270094 X-Msedge-Ref: - - 'Ref A: 237AA205A358447CB1646520FF2E7E88 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:48Z' + - 'Ref A: D16C8203B1D84EA09B84737D747C5D40 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:12Z' status: 200 OK code: 200 - duration: 393.38417ms - - id: 20 + duration: 823.427334ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1385,17 +1450,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l8e51f4%27&api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1403,18 +1466,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 136970 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","name":"rg-azdtest-l8e51f4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","DeleteAfter":"2025-07-02T05:42:07Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:48 GMT + - Thu, 09 Apr 2026 17:41:13 GMT Expires: - "-1" Pragma: @@ -1426,21 +1489,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 8f9601bb-2fed-4859-9f9b-f0c5ef1976d6 + - de85ca57-4891-4d6d-ad8d-68234dfdda72 X-Ms-Routing-Request-Id: - - WESTUS:20250702T044349Z:8f9601bb-2fed-4859-9f9b-f0c5ef1976d6 + - EASTUS:20260409T174113Z:de85ca57-4891-4d6d-ad8d-68234dfdda72 X-Msedge-Ref: - - 'Ref A: A6DBCF9521FD4955B67925C8F9ABF97B Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:49Z' + - 'Ref A: 59FD10A61C32431B8FA7EB7FBF5206CE Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:13Z' status: 200 OK code: 200 - duration: 89.617629ms - - id: 21 + duration: 513.322708ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1461,10 +1524,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/resources?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1472,18 +1535,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 2746 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae","name":"stluhyslxgyhqae","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:40:22.2441301Z","duration":"PT31.8019638S","correlationId":"690fa3436de41f0b3b19707df0e3e88f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7e40f4"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stpjeoa2h4bzroq"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:48 GMT + - Thu, 09 Apr 2026 17:41:13 GMT Expires: - "-1" Pragma: @@ -1495,21 +1558,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b97be9bf-492f-427e-8450-37bb1ab22d14 + - f8f92f12-fc60-4f43-a20b-3159a6087c31 X-Ms-Routing-Request-Id: - - WESTUS:20250702T044349Z:b97be9bf-492f-427e-8450-37bb1ab22d14 + - EASTUS2:20260409T174114Z:f8f92f12-fc60-4f43-a20b-3159a6087c31 X-Msedge-Ref: - - 'Ref A: 3AA64893382A4FF787F3DB5BFB9C37CC Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:49Z' + - 'Ref A: E0CBCB5B0A0A4E11B40DB883736E0528 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:14Z' status: 200 OK code: 200 - duration: 192.560203ms - - id: 22 + duration: 76.554417ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1530,10 +1593,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1541,18 +1604,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2555 + content_length: 364 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"properties":{"templateHash":"3905344247269538911","parameters":{"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-07-02T04:42:44.439408Z","duration":"PT36.7511762S","correlationId":"5811d3caf85f5593005f25060a12b71a","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l8e51f4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stluhyslxgyhqae"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}]}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq","name":"stpjeoa2h4bzroq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2555" + - "364" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:49 GMT + - Thu, 09 Apr 2026 17:41:13 GMT Expires: - "-1" Pragma: @@ -1564,21 +1627,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 20c2bd8b-f590-44d1-b117-727540d397e8 + - 5fdc5107-a5ec-4e41-8b1d-cea80081fd1a X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044349Z:20c2bd8b-f590-44d1-b117-727540d397e8 + - EASTUS2:20260409T174114Z:5fdc5107-a5ec-4e41-8b1d-cea80081fd1a X-Msedge-Ref: - - 'Ref A: BF2DAFA1225740599A4C31D7FD20FA83 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:49Z' + - 'Ref A: 92BABBD0711642AA82200C551AF18287 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:14Z' status: 200 OK code: 200 - duration: 358.156717ms - - id: 23 + duration: 92.525834ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1599,10 +1662,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l8e51f4%27&api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1610,18 +1673,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 2746 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","name":"rg-azdtest-l8e51f4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","DeleteAfter":"2025-07-02T05:42:07Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:40:22.2441301Z","duration":"PT31.8019638S","correlationId":"690fa3436de41f0b3b19707df0e3e88f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7e40f4"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stpjeoa2h4bzroq"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:49 GMT + - Thu, 09 Apr 2026 17:41:13 GMT Expires: - "-1" Pragma: @@ -1633,21 +1696,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5e44f892-3b1d-43a1-ae7d-36a317994c7d + - f867f157-c6d1-4e73-8dbb-a7be4afba09f X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044349Z:5e44f892-3b1d-43a1-ae7d-36a317994c7d + - EASTUS:20260409T174114Z:f867f157-c6d1-4e73-8dbb-a7be4afba09f X-Msedge-Ref: - - 'Ref A: 8856EADF6E87426D857CC84A5396A9CB Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:49Z' + - 'Ref A: 8B171D90432747A89DE2B7D2C8C91442 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:14Z' status: 200 OK code: 200 - duration: 60.571049ms - - id: 24 + duration: 148.223917ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1668,10 +1731,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/resources?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1681,7 +1744,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae","name":"stluhyslxgyhqae","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq","name":"stpjeoa2h4bzroq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4"}}]}' headers: Cache-Control: - no-cache @@ -1690,7 +1753,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:43:49 GMT + - Thu, 09 Apr 2026 17:41:13 GMT Expires: - "-1" Pragma: @@ -1702,21 +1765,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - 70bd7f00-b6f0-46f0-a778-6a3568324252 + - 0b53f439-08e9-47ba-8e58-c274d858f171 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044350Z:70bd7f00-b6f0-46f0-a778-6a3568324252 + - EASTUS2:20260409T174114Z:0b53f439-08e9-47ba-8e58-c274d858f171 X-Msedge-Ref: - - 'Ref A: 3D6C9B54C86F44338154C8CC59EEF280 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:49Z' + - 'Ref A: A090476484414C54A29497BBEFEF008A Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:14Z' status: 200 OK code: 200 - duration: 172.320187ms - - id: 25 + duration: 102.4045ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1737,10 +1800,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l8e51f4?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d7e40f4?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1757,11 +1820,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 02 Jul 2025 04:43:50 GMT + - Thu, 09 Apr 2026 17:41:13 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMOEU1MUY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638870282930780900&c=MIIHhzCCBm-gAwIBAgITfAd-Vd7NbNf6pu3--QAAB35V3jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDE4MDkzMjM0WhcNMjUxMDE1MDkzMjM0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM4cOuemCoMuyhG-hRDGM5d3nryaXbAhDxKILmrQBSq9a63DN4sTbUHZafxKMxwqx_VcG1sqw5HvH-ddECtfe9gbDmbnQAVAUuFSpXo21kRsSsQXQnuX6FFB7s8SIV1uc2zU583Uv_pNTuYIfJFZVMvVua9bd7gtxjzvx7-2dp5tD2zL7TylVdkfZiPWTtOkx7xUwLdk3mjX0IQ1eRW8kPowHclVp0IyKGUEC4jjYVhgVcd2wheCcTwVTmcwVYVzk7WidEXyNszKaJz8DvZgi68_ynv1zePlFZVR_luI4_6niFY_1LEzwz-YcaPKBiOsmqE215FRrHra7d6t1qexoYUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSl1U8yx_vfojwctA5ZGxImkaplujAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKhiJkKUIhgDDVlsuQUomedC40VlL5azeJkfbx-zx6a7LSFof6BdKFuNAOOVwNyChuOjXniRM4Y8qq26SxDAjVs9MyCZivz4H9bIvBr3NTWojGo1fIzbo8DxsIVtDqospJOnXnc8sWFPYlOE8nKf1m3y_JRRM3CGr8gBdjiZIf5TJ6K2JjtVqyhuBDWMmjndiNnuIRh0zfUeC8hPFJYiWIiCpNUaZ6LtI6CPoiOk6QyFzWPveZBDIfdm8JbflJIFXFgPGzETW9ag037pB0zm4jf5VyKIPEWSyJaNLm64-SZI6ZAsvrtmQ1jux1dCP_nTlPS4YBZdy_lRYjRe_8cQLxM&s=usncp6Wgqd0sSf7uTjwBiiWQWDu85uU3ok28UQulwodNTUCFxPbeVSfFb_5JiNmbnq_T49yZa5eUZn5ekC_ei3QDvcciobuDZ_xtFQkJVw1v3ptUJ3YlpFbeMWQDDgESEeUSoWcwtRfoxorWorB4nYjbxHs7f_0KjdiRFZLbEGuPwcigUCYqq25jHEcUlS7CzW5943TjBgf2QJlI9jBJEWhxup_ddZHd5EqXSdQedVFOglCcexxbFWYnR8SYJS66y8omw5vRVZywfmmpUUHVm1ZHUT_4MfgbN6TMQHQ2n3fheGGtWn23Z8MBw6vWrKBeneGAJGWZJH7oXZk4sSeB-A&h=edhfuz5kTJ2pw1ZQ4EnURAGSiBr7Z07faH9A1Y1BKLI + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREN0U0MEY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113533806526894&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=mucf7QCe6PqzopE600d6xZ4JrVH0L-y3FrR8rD14ltZkzmLGqSSNgfiste-mik7GmTCm5euBjZrjGfneEig1J3FfJlvfpQoLZavtwE8OOrOWO_w19olOi_BThGJ7oLSCb_hUGsOxgEiYMXmRzcxgebZm0RgVECyOjWnlX9AHfYq9PgnCCfyTAEFR5ZPt8zvymxPp85O0k9Ja3JEshUAzBZ1rm40xy5bt_zPOFCex0L6Gc3E76D6FOJ7x4H6AicZH4m4uYdBGDWnP3O_CIHF6mT2mnOQ8rlHjLgGu2A9z9j5x7_ay6iijq5Dxia7_cc3a8EWjrzoAv_-5wUwltiVnOg&h=zcl9AFbue9mfEvzKOhcDFEOfDqc_HW3VKvTUn_09Jxw Pragma: - no-cache Retry-After: @@ -1773,21 +1836,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - 9540a734-0fe3-49b9-8ca0-c38d4b796236 + - d81fdaa9-d997-4038-b1d3-c8277b229583 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044351Z:9540a734-0fe3-49b9-8ca0-c38d4b796236 + - EASTUS2:20260409T174114Z:d81fdaa9-d997-4038-b1d3-c8277b229583 X-Msedge-Ref: - - 'Ref A: 06873C9A6CD24BAEA8226476E02AFF5E Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:43:50Z' + - 'Ref A: B9DFCAB8E23546F092A8CBB8BCEE702A Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:41:14Z' status: 202 Accepted code: 202 - duration: 1.460063455s - - id: 26 + duration: 165.826292ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1806,10 +1869,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMOEU1MUY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638870282930780900&c=MIIHhzCCBm-gAwIBAgITfAd-Vd7NbNf6pu3--QAAB35V3jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDE4MDkzMjM0WhcNMjUxMDE1MDkzMjM0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM4cOuemCoMuyhG-hRDGM5d3nryaXbAhDxKILmrQBSq9a63DN4sTbUHZafxKMxwqx_VcG1sqw5HvH-ddECtfe9gbDmbnQAVAUuFSpXo21kRsSsQXQnuX6FFB7s8SIV1uc2zU583Uv_pNTuYIfJFZVMvVua9bd7gtxjzvx7-2dp5tD2zL7TylVdkfZiPWTtOkx7xUwLdk3mjX0IQ1eRW8kPowHclVp0IyKGUEC4jjYVhgVcd2wheCcTwVTmcwVYVzk7WidEXyNszKaJz8DvZgi68_ynv1zePlFZVR_luI4_6niFY_1LEzwz-YcaPKBiOsmqE215FRrHra7d6t1qexoYUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSl1U8yx_vfojwctA5ZGxImkaplujAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKhiJkKUIhgDDVlsuQUomedC40VlL5azeJkfbx-zx6a7LSFof6BdKFuNAOOVwNyChuOjXniRM4Y8qq26SxDAjVs9MyCZivz4H9bIvBr3NTWojGo1fIzbo8DxsIVtDqospJOnXnc8sWFPYlOE8nKf1m3y_JRRM3CGr8gBdjiZIf5TJ6K2JjtVqyhuBDWMmjndiNnuIRh0zfUeC8hPFJYiWIiCpNUaZ6LtI6CPoiOk6QyFzWPveZBDIfdm8JbflJIFXFgPGzETW9ag037pB0zm4jf5VyKIPEWSyJaNLm64-SZI6ZAsvrtmQ1jux1dCP_nTlPS4YBZdy_lRYjRe_8cQLxM&s=usncp6Wgqd0sSf7uTjwBiiWQWDu85uU3ok28UQulwodNTUCFxPbeVSfFb_5JiNmbnq_T49yZa5eUZn5ekC_ei3QDvcciobuDZ_xtFQkJVw1v3ptUJ3YlpFbeMWQDDgESEeUSoWcwtRfoxorWorB4nYjbxHs7f_0KjdiRFZLbEGuPwcigUCYqq25jHEcUlS7CzW5943TjBgf2QJlI9jBJEWhxup_ddZHd5EqXSdQedVFOglCcexxbFWYnR8SYJS66y8omw5vRVZywfmmpUUHVm1ZHUT_4MfgbN6TMQHQ2n3fheGGtWn23Z8MBw6vWrKBeneGAJGWZJH7oXZk4sSeB-A&h=edhfuz5kTJ2pw1ZQ4EnURAGSiBr7Z07faH9A1Y1BKLI + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREN0U0MEY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113533806526894&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=mucf7QCe6PqzopE600d6xZ4JrVH0L-y3FrR8rD14ltZkzmLGqSSNgfiste-mik7GmTCm5euBjZrjGfneEig1J3FfJlvfpQoLZavtwE8OOrOWO_w19olOi_BThGJ7oLSCb_hUGsOxgEiYMXmRzcxgebZm0RgVECyOjWnlX9AHfYq9PgnCCfyTAEFR5ZPt8zvymxPp85O0k9Ja3JEshUAzBZ1rm40xy5bt_zPOFCex0L6Gc3E76D6FOJ7x4H6AicZH4m4uYdBGDWnP3O_CIHF6mT2mnOQ8rlHjLgGu2A9z9j5x7_ay6iijq5Dxia7_cc3a8EWjrzoAv_-5wUwltiVnOg&h=zcl9AFbue9mfEvzKOhcDFEOfDqc_HW3VKvTUn_09Jxw method: GET response: proto: HTTP/2.0 @@ -1826,7 +1889,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 02 Jul 2025 04:45:07 GMT + - Thu, 09 Apr 2026 17:43:14 GMT Expires: - "-1" Pragma: @@ -1838,21 +1901,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 75c60cf6-f7be-48fc-9a31-5f9170a96d1f + - 80527b32-af5d-44de-bf7e-c2bcf461a72b X-Ms-Routing-Request-Id: - - WESTUS:20250702T044508Z:75c60cf6-f7be-48fc-9a31-5f9170a96d1f + - EASTUS:20260409T174315Z:80527b32-af5d-44de-bf7e-c2bcf461a72b X-Msedge-Ref: - - 'Ref A: 5F9665F2231C443DB651A71204942AD0 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:45:08Z' + - 'Ref A: 8521D4695470443FA1641F69DD562EBE Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:43:15Z' status: 200 OK code: 200 - duration: 185.446043ms - - id: 27 + duration: 88.066875ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1873,10 +1936,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1884,18 +1947,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2555 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l8e51f4","azd-provision-param-hash":"316da2c2ce2926b07d279f7e2db25d59757d797874c1d07fc120ff1695f98f6d"},"properties":{"templateHash":"3905344247269538911","parameters":{"environmentName":{"type":"String","value":"azdtest-l8e51f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-07-02T05:42:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-07-02T04:42:44.439408Z","duration":"PT36.7511762S","correlationId":"5811d3caf85f5593005f25060a12b71a","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l8e51f4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stluhyslxgyhqae"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l8e51f4/providers/Microsoft.Storage/storageAccounts/stluhyslxgyhqae"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7e40f4","azd-layer-name":"","azd-provision-param-hash":"752600069bf18b404c54c0bbbe8f692d2b42081960359deead7563835b025e9b"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7e40f4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:39:50Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:40:22.2441301Z","duration":"PT31.8019638S","correlationId":"690fa3436de41f0b3b19707df0e3e88f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7e40f4"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stpjeoa2h4bzroq"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7e40f4/providers/Microsoft.Storage/storageAccounts/stpjeoa2h4bzroq"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2555" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:45:07 GMT + - Thu, 09 Apr 2026 17:43:15 GMT Expires: - "-1" Pragma: @@ -1907,21 +1970,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1a87fc4d-001f-4d59-9942-7c4ae783f5d2 + - 5f1ddd5c-7fe0-4422-8142-0eb2646738a9 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044508Z:1a87fc4d-001f-4d59-9942-7c4ae783f5d2 + - EASTUS:20260409T174316Z:5f1ddd5c-7fe0-4422-8142-0eb2646738a9 X-Msedge-Ref: - - 'Ref A: F30758C03F764021B53611A0CE877AE8 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:45:08Z' + - 'Ref A: 2623827A312041A7879857A71CAC1E4F Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:43:15Z' status: 200 OK code: 200 - duration: 434.752124ms - - id: 28 + duration: 151.293333ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1932,7 +1995,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l8e51f4"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7e40f4"}}' form: {} headers: Accept: @@ -1946,10 +2009,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1957,20 +2020,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 569 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l8e51f4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-07-02T04:45:09.3199421Z","duration":"PT0.0005145S","correlationId":"7be6649072c3fa233559a22b49b4bf80","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7e40f4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:43:16.3954422Z","duration":"PT0.000512S","correlationId":"6fc0cfc701d02d10545a5f9d20bb0197","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302/operationStatuses/08584501753761528308?api-version=2021-04-01&t=638870283122886441&c=MIIHpTCCBo2gAwIBAgITOgWZuFmLREgOyTdeugAEBZm4WTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE5MTQyMjI3WhcNMjUxMDE2MTQyMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPxDlNdj6r6H0vTzKfz228nqLQPXYSxPqEGQSSSCczQcCX3f_Xtnvc-lFdoleay-OVQlgfbWiMkGazl2q7FVj9BZUHJ3KXFg833nlMDzzIkfrA17t4t3OW-6po21aPw9TdEBtH-GReYxdd8YmK-hHhKfpllLkKKn29Z8r3ecn-VJ1URRr4gV1Dnhd8h62eio4oVWmqq_9ITkiyfphE8gKB3n-2ZGTlftv1uEX4hpgnUbyhP4GBPp9Ni0RdYmpukMEr1-GI3W5OnXgKOvoCRB0HZQKU-5u630M-76UA_GFyALd1X_xQwHcCHKvtBzX5EEcQ4AOj_B540c3Mp0HnljQsECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRgocSx-jjjSuZiJXHuNlAhZPhmbjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAK5mT0Rrym5x1NF2yah7nxZLo1y0madgpRkCREZyGAoW02DZD68DX6wagq4RbcOr_MAlhvWOTjVB8J52ZIsydOGq5NSpxte9Cy10m7-zSXWMn0yNE8YUToarDNRzmshQ5pEBXhjU6kSMEvqeNG8Fr3KrDZEVieQc5By_ZV8F9vtuv90XjrjiLw1qOrPVVvUFOTx-JlUR4aErF4Jldd_YA0aWCiYbvu3Bd1vWtXdnrkJSX-natlKNqGimVnj86nKEao8ktK5pKaHq6C8vbOLeNreXRy5C2fC1tgiZ00V2pHuk1qbOdhlzTDv8G0HZLm_T7_s92OBqMAwBJ1uChKnQm6M&s=UIu2V0AnhtaBL9dqPfj_Koc2vtqPXn1jLzrTl-w_g9U-qxuUg-C_Ox4JC89RC7yhCQeF_AbP-kipgk2DEvak-YTHXVKnZzENxQ1XHVFXnYSVtGrGeUZ9ju3WrtDAjq4cSjSfp3tkib5ZypFbBeW8MiAmimoO0XhNyB_DpSSc-NNTjT6xlnQ91tRmG-Ue8FAcgzY4Y1bH_rx2cQO6Rib3d5wez3tG7JG9nzRXRsLIiNhz3yTWOl9aDjujjUIeYkDAKbKbhQ34YqE5Tw7kXPyuoWMiJvZoEVFWo6MaIUlAb2rIGFgmcK6QMyiu7_QAyd0f2KaVcshv4NczYqFpy_ttLg&h=kv1f-NrBwoQDXuPDHw2J0enGBQuqNErbV012dEPlJRw + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372/operationStatuses/08584258502890776383?api-version=2021-04-01&t=639113533970360608&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=l_XPXeY4a8VT0PMQSBWt05TilZKunzE3ELsh9CrN03i3SuK7UCTLIZBsFtYFThJL3-VYmiXCet7QQx8sIntNw14kV_dp289OPw9dkMiGnwe4qi-2juxwoBvMJBZPv7TYdQucBDN6h303-t4U0kf5-EJXQFaiQ6DLbs13-PzeoAUQIn7SQRpA57Z1j-ggnwsS8rx6DZmJsf7YEkubLKyVpskfccgOb_fWiybaANAJ_Eb0diWutc6fYWYnuD_G8dpcLQLdIwTQdJXeQhwrpJ23p4QrO9ol4p2Y8dKaEQSAWXE4YqDFlCSWFtp35enKhoEsyQoMLKp_UJreomc3WflYQg&h=HtPF40rPUquIXaSon_JB37Hg00BI9mXZ9t_LDq4Hr28 Cache-Control: - no-cache Content-Length: - - "570" + - "569" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:45:11 GMT + - Thu, 09 Apr 2026 17:43:16 GMT Expires: - "-1" Pragma: @@ -1982,23 +2045,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Deployment-Engine-Version: - - 1.387.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 1c775e42-6c68-472f-89b9-d10002343ef5 + - a8503d11-4ac0-4d98-a899-440d04616c44 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044512Z:1c775e42-6c68-472f-89b9-d10002343ef5 + - EASTUS:20260409T174317Z:a8503d11-4ac0-4d98-a899-440d04616c44 X-Msedge-Ref: - - 'Ref A: 54AC5EC7827B452AA12015A03A143CA8 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:45:08Z' + - 'Ref A: A36B949EF40348C99BF9C3346E84C134 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:43:16Z' status: 200 OK code: 200 - duration: 3.626093893s - - id: 29 + duration: 1.027294583s + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2017,10 +2080,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302/operationStatuses/08584501753761528308?api-version=2021-04-01&t=638870283122886441&c=MIIHpTCCBo2gAwIBAgITOgWZuFmLREgOyTdeugAEBZm4WTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE5MTQyMjI3WhcNMjUxMDE2MTQyMjI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPxDlNdj6r6H0vTzKfz228nqLQPXYSxPqEGQSSSCczQcCX3f_Xtnvc-lFdoleay-OVQlgfbWiMkGazl2q7FVj9BZUHJ3KXFg833nlMDzzIkfrA17t4t3OW-6po21aPw9TdEBtH-GReYxdd8YmK-hHhKfpllLkKKn29Z8r3ecn-VJ1URRr4gV1Dnhd8h62eio4oVWmqq_9ITkiyfphE8gKB3n-2ZGTlftv1uEX4hpgnUbyhP4GBPp9Ni0RdYmpukMEr1-GI3W5OnXgKOvoCRB0HZQKU-5u630M-76UA_GFyALd1X_xQwHcCHKvtBzX5EEcQ4AOj_B540c3Mp0HnljQsECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRgocSx-jjjSuZiJXHuNlAhZPhmbjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAK5mT0Rrym5x1NF2yah7nxZLo1y0madgpRkCREZyGAoW02DZD68DX6wagq4RbcOr_MAlhvWOTjVB8J52ZIsydOGq5NSpxte9Cy10m7-zSXWMn0yNE8YUToarDNRzmshQ5pEBXhjU6kSMEvqeNG8Fr3KrDZEVieQc5By_ZV8F9vtuv90XjrjiLw1qOrPVVvUFOTx-JlUR4aErF4Jldd_YA0aWCiYbvu3Bd1vWtXdnrkJSX-natlKNqGimVnj86nKEao8ktK5pKaHq6C8vbOLeNreXRy5C2fC1tgiZ00V2pHuk1qbOdhlzTDv8G0HZLm_T7_s92OBqMAwBJ1uChKnQm6M&s=UIu2V0AnhtaBL9dqPfj_Koc2vtqPXn1jLzrTl-w_g9U-qxuUg-C_Ox4JC89RC7yhCQeF_AbP-kipgk2DEvak-YTHXVKnZzENxQ1XHVFXnYSVtGrGeUZ9ju3WrtDAjq4cSjSfp3tkib5ZypFbBeW8MiAmimoO0XhNyB_DpSSc-NNTjT6xlnQ91tRmG-Ue8FAcgzY4Y1bH_rx2cQO6Rib3d5wez3tG7JG9nzRXRsLIiNhz3yTWOl9aDjujjUIeYkDAKbKbhQ34YqE5Tw7kXPyuoWMiJvZoEVFWo6MaIUlAb2rIGFgmcK6QMyiu7_QAyd0f2KaVcshv4NczYqFpy_ttLg&h=kv1f-NrBwoQDXuPDHw2J0enGBQuqNErbV012dEPlJRw + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372/operationStatuses/08584258502890776383?api-version=2021-04-01&t=639113533970360608&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=l_XPXeY4a8VT0PMQSBWt05TilZKunzE3ELsh9CrN03i3SuK7UCTLIZBsFtYFThJL3-VYmiXCet7QQx8sIntNw14kV_dp289OPw9dkMiGnwe4qi-2juxwoBvMJBZPv7TYdQucBDN6h303-t4U0kf5-EJXQFaiQ6DLbs13-PzeoAUQIn7SQRpA57Z1j-ggnwsS8rx6DZmJsf7YEkubLKyVpskfccgOb_fWiybaANAJ_Eb0diWutc6fYWYnuD_G8dpcLQLdIwTQdJXeQhwrpJ23p4QrO9ol4p2Y8dKaEQSAWXE4YqDFlCSWFtp35enKhoEsyQoMLKp_UJreomc3WflYQg&h=HtPF40rPUquIXaSon_JB37Hg00BI9mXZ9t_LDq4Hr28 method: GET response: proto: HTTP/2.0 @@ -2039,7 +2102,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:45:42 GMT + - Thu, 09 Apr 2026 17:43:46 GMT Expires: - "-1" Pragma: @@ -2051,21 +2114,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2ce99796-c334-4807-8350-0824e4ffbeea + - cdb5f2d6-218c-4540-89fb-747c350167b5 X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044543Z:2ce99796-c334-4807-8350-0824e4ffbeea + - EASTUS:20260409T174347Z:cdb5f2d6-218c-4540-89fb-747c350167b5 X-Msedge-Ref: - - 'Ref A: 9EA1160ABF7F4FF781CA9D5584A7F78F Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:45:42Z' + - 'Ref A: F5FF7DA6F188433B9635B9C29163F25C Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:43:47Z' status: 200 OK code: 200 - duration: 228.368572ms - - id: 30 + duration: 106.615791ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2084,10 +2147,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.4; linux),azdev/0.0.0-dev.0 (Go go1.24.4; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302?api-version=2021-04-01 + - 6fc0cfc701d02d10545a5f9d20bb0197 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2097,7 +2160,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l8e51f4-1751431302","name":"azdtest-l8e51f4-1751431302","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l8e51f4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-07-02T04:45:12.6716186Z","duration":"PT3.3516765S","correlationId":"7be6649072c3fa233559a22b49b4bf80","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7e40f4-1775756372","name":"azdtest-d7e40f4-1775756372","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7e40f4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:43:17.4998167Z","duration":"PT1.1043745S","correlationId":"6fc0cfc701d02d10545a5f9d20bb0197","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -2106,7 +2169,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 02 Jul 2025 04:45:42 GMT + - Thu, 09 Apr 2026 17:43:46 GMT Expires: - "-1" Pragma: @@ -2118,21 +2181,9243 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7be6649072c3fa233559a22b49b4bf80 + - 6fc0cfc701d02d10545a5f9d20bb0197 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b10b3f56-a314-4122-a1fd-a9ce7a909cbd + - 17ef609a-85ad-4c88-89ca-80e5583e133a X-Ms-Routing-Request-Id: - - WESTUS2:20250702T044543Z:b10b3f56-a314-4122-a1fd-a9ce7a909cbd + - EASTUS:20260409T174347Z:17ef609a-85ad-4c88-89ca-80e5583e133a X-Msedge-Ref: - - 'Ref A: 71D89E110D7B463793DE033D28860CA3 Ref B: CO6AA3150217017 Ref C: 2025-07-02T04:45:43Z' + - 'Ref A: E5B379D0531D4C47A0B0FFDF9A7CAF61 Ref B: BN1AA2051014037 Ref C: 2026-04-09T17:43:47Z' + status: 200 OK + code: 200 + duration: 162.969959ms + - id: 32 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:43:47 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:48:47 GMT + Source-Age: + - "287" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - ac101153bc44b35d8f27acd5c5cfc8eda16ad2f3 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760109-MIA + X-Timer: + - S1775756628.802834,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 101.79725ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:43:48 GMT + Expires: + - Thu, 09 Apr 2026 17:43:48 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: 256.154208ms + - id: 34 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:43:48 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:48:48 GMT + Source-Age: + - "287" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - de4575ee791e6b36fa71c9cffee2f8d92b1d9c97 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760109-MIA + X-Timer: + - S1775756628.111319,VS0,VE6 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 35.422833ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:43:48 GMT + Expires: + - Thu, 09 Apr 2026 17:43:48 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 266.891541ms + - id: 36 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:43:48 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:48:48 GMT + Source-Age: + - "287" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 61ec8000710a8fbe6c77669ca0a033a3c0543f0c + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760109-MIA + X-Timer: + - S1775756628.446286,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 24.530375ms + - id: 37 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:43:48 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:48:48 GMT + Source-Age: + - "287" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 24e30ab59cd6e0e9ac9fa88a7c35b2d75ec3f8a6 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760109-MIA + X-Timer: + - S1775756628.487990,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 224.867886ms + duration: 24.123542ms --- -env_name: azdtest-l8e51f4 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1751431302" +env_name: azdtest-d7e40f4 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775756372" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml index ef2cea1c374..1eedab8c09c 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml @@ -2,6 +2,9228 @@ version: 2 interactions: - id: 0 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:44:21 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:49:21 GMT + Source-Age: + - "0" + 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: + - fe833330e1739fd1a36bded285849d168409de29 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760029-MIA + X-Timer: + - S1775756662.717965,VS0,VE86 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 155.812625ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:44:22 GMT + Expires: + - Thu, 09 Apr 2026 17:44:22 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: 188.332ms + - id: 2 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:44:22 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:49:22 GMT + Source-Age: + - "0" + 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: + - 2fbb47380f76fab6563373adfc9a8662b34f5d5e + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760029-MIA + X-Timer: + - S1775756662.030591,VS0,VE52 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 69.039667ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:44:22 GMT + Expires: + - Thu, 09 Apr 2026 17:44:22 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 40.283042ms + - id: 4 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:44:22 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:49:22 GMT + Source-Age: + - "0" + 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: + - bea447c00c6e97149d863a1aedf3de8df26e9b28 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760029-MIA + X-Timer: + - S1775756662.167496,VS0,VE59 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 70.492875ms + - id: 5 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:44:22 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:49:22 GMT + Source-Age: + - "0" + 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: + - 7d05d1f28b294cfedf9b373e0a321bb940c82bf1 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760029-MIA + X-Timer: + - S1775756662.257280,VS0,VE116 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 131.592ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -22,10 +9244,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armkeyvault/v1.5.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +9255,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3762 + content_length: 253 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev/providers/Microsoft.KeyVault/vaults/kv-kktuwqpce2enu","name":"kv-kktuwqpce2enu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "3762" + - "253" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:27:47 GMT + - Thu, 09 Apr 2026 17:44:22 GMT Expires: - "-1" Pragma: @@ -56,21 +9278,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6d04e565-fe50-44d2-a967-028b4f47b943 + - f09bedae-b650-43b0-999f-6f5c79c3fc90 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192747Z:6d04e565-fe50-44d2-a967-028b4f47b943 + - EASTUS2:20260409T174423Z:f09bedae-b650-43b0-999f-6f5c79c3fc90 X-Msedge-Ref: - - 'Ref A: 89E09323228742F6BB00F5295A06DBE3 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:46Z' + - 'Ref A: 48BF00FC49484AB6A66FE1BF5256EEE5 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:23Z' status: 200 OK code: 200 - duration: 331.096259ms - - id: 1 + duration: 372.189458ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -91,10 +9313,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -102,18 +9324,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35781 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35781" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:27:50 GMT + - Thu, 09 Apr 2026 17:44:23 GMT Expires: - "-1" Pragma: @@ -125,21 +9347,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c645a67a-6bc5-46d0-86de-e85a50b80f2b + - 8c41bb3f-f30a-4ada-b8ab-b0eb28eff858 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192750Z:c645a67a-6bc5-46d0-86de-e85a50b80f2b + - EASTUS2:20260409T174424Z:8c41bb3f-f30a-4ada-b8ab-b0eb28eff858 X-Msedge-Ref: - - 'Ref A: D1B54E28ADF44BD0ABDCFE7CCCDBB6BA Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:47Z' + - 'Ref A: C04B6F7E8B9F499EB41B9ECBF097B490 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:23Z' status: 200 OK code: 200 - duration: 3.753724777s - - id: 2 + duration: 1.164602458s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -160,10 +9382,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -171,18 +9393,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28379 + content_length: 13198 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/25/2025 04:12:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie","name":"scaddie","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-29T18:30:38.8051026Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh0","name":"rg-conniey-eh0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T20:31:01.5670010Z","ServiceDirectory":"eventhubs","Owners":"conniey"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh01","name":"rg-conniey-eh01","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T22:27:57.5082464Z","Owners":"conniey","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-benappconfiguration","name":"rg-benappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ben","ServiceDirectory":"appconfiguration","DeleteAfter":"2025-01-29T20:57:45.8764493Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs2","name":"rg-riparkazeventhubs2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2025-01-29T22:13:48.6457998Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh02","name":"rg-conniey-eh02","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"conniey","ServiceDirectory":"eventhubs","DeleteAfter":"2025-01-29T23:11:13.4589864Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-sarajama-3688_ai","name":"rg-sarajama-3688_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/02/2025 16:15:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg","name":"dep-uni-eventhub.namespaces-ehnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg","name":"dep-uni-servicebus.namespaces-sbnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai","name":"rg-rajeshkamal-6661_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/02/2025 20:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova","name":"limolkova","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/04/2025 20:20:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/renhetestanddemo","name":"renhetestanddemo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/28/2025 08:10:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/Default-ApplicationInsights-EastUS","name":"Default-ApplicationInsights-EastUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shayne","name":"shayne","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/sociallinker","name":"sociallinker","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/first-timers-only","name":"first-timers-only","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shboyer-ghost","name":"shboyer-ghost","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates","name":"azureadvocates","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","name":"ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/microsoft.insights/components/social-linker-insights","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceai","name":"rg-unconferenceai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"unconferenceai"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdevtools-pm","name":"azdevtools-pm","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","name":"pmdataagent-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-func-flex-demo","name":"rg-func-flex-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"func-flex-demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/devtopromoter","name":"devtopromoter","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/nerddinner-mvc4","name":"nerddinner-mvc4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS2","name":"DefaultResourceGroup-EUS2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","name":"rg-shboyer-4385","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-octopets-2025","name":"rg-octopets-2025","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"aspire":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py","name":"rg-scope-func-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","name":"ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py/providers/microsoft.insights/components/appi-vc3jdcjrljj4e","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recorded-swa-session","name":"rg-recorded-swa-session","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dash","name":"rg-ontology-dash","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dash"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dashboard","name":"rg-ontology-dashboard","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dashboard"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-fortune-peter","name":"rg-fortune-peter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fortune-peter"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recipe-remix-dev","name":"rg-recipe-remix-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"recipe-remix-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-bug-detective-dev","name":"rg-bug-detective-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"bug-detective-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","name":"rg-shboyer-af-ts","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-echo-ts-fresh","name":"rg-echo-ts-fresh","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"echo-ts-fresh"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ts-mf-testing","name":"rg-ts-mf-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ts-mf-testing"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/waza-docs-rg","name":"waza-docs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-collab-plan","name":"rg-collab-plan","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-task-tracker-demo","name":"rg-task-tracker-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-demo-deploy-k8m3","name":"rg-demo-deploy-k8m3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"demo-deploy-k8m3"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-forge-plugin-dev","name":"rg-forge-plugin-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"forge-plugin-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-test-agent","name":"rg-test-agent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev","name":"rg-waza-platform-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"waza-platform-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/swa-tutorial","name":"swa-tutorial","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceapp","name":"rg-unconferenceapp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"unconferenceapp"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","name":"rg-copilot-demo","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-calc","name":"rg-calc","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"calc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-email-router-agent","name":"rg-email-router-agent","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"email-router-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-david-test","name":"rg-david-test","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"david-test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-claw","name":"rg-foundry-claw","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-claw"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus","name":"rg-foundry-helper-ncus","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-helper-ncus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-USW3","name":"DefaultResourceGroup-USW3","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "28379" + - "13198" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:27:50 GMT + - Thu, 09 Apr 2026 17:44:23 GMT Expires: - "-1" Pragma: @@ -194,21 +9416,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b6e899d9-9e3d-406e-b0a5-c093f57d63f4 + - 18020772-6af1-471b-a783-ecdd4b5f08a5 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192750Z:b6e899d9-9e3d-406e-b0a5-c093f57d63f4 + - EASTUS2:20260409T174424Z:18020772-6af1-471b-a783-ecdd4b5f08a5 X-Msedge-Ref: - - 'Ref A: 44C507B879544195A89D8040BAC95319 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:50Z' + - 'Ref A: A34AAEE092B143A89F5E7828B86B993F Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:24Z' status: 200 OK code: 200 - duration: 45.568597ms - - id: 3 + duration: 196.828917ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -233,10 +9455,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-lb61973-rg?api-version=2021-04-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/azdtest-d016896-rg?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -246,7 +9468,7 @@ interactions: trailer: {} content_length: 244 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg","name":"azdtest-lb61973-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg","name":"azdtest-d016896-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' headers: Cache-Control: - no-cache @@ -255,7 +9477,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:27:51 GMT + - Thu, 09 Apr 2026 17:44:24 GMT Expires: - "-1" Pragma: @@ -267,21 +9489,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 2654e740-a5f4-4d24-ae47-ffb8cd92c8ac + - 5243119d-067d-4956-8e50-29f234ee8e10 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192751Z:2654e740-a5f4-4d24-ae47-ffb8cd92c8ac + - EASTUS:20260409T174425Z:5243119d-067d-4956-8e50-29f234ee8e10 X-Msedge-Ref: - - 'Ref A: FB62893B44DD44AF9D6DCAD20F038E78 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:51Z' + - 'Ref A: 3BD48CE4074B499BBB760B874D525038 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:24Z' status: 201 Created code: 201 - duration: 797.350429ms - - id: 4 + duration: 492.12975ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -306,10 +9528,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armkeyvault/v1.5.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva?api-version=2023-07-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva?api-version=2024-11-01 method: PUT response: proto: HTTP/2.0 @@ -317,18 +9539,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 832 + content_length: 906 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T19:27:53.1Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T19:27:53.1Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lb61973-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva","name":"azdtest-d016896-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T17:44:25.518Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T17:44:25.518Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enabledForDiskEncryption":false,"enabledForTemplateDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-d016896-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache Content-Length: - - "832" + - "906" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:27:54 GMT + - Thu, 09 Apr 2026 17:44:26 GMT Expires: - "-1" Pragma: @@ -342,25 +9564,27 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - fa12920f-cbbd-473f-9398-0f70d4ce5880 + - 98377a57-deb6-49f1-9afa-3f381819e6a6 X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 X-Ms-Keyvault-Service-Version: - - 1.5.1455.0 + - 2.2.674.0 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/927fed4c-20c8-43eb-8dde-961a3c1f4c49 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 7035be52-449f-4401-9389-0843acb7490d + - 7929163d-862f-4018-a893-6884756fcf84 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192754Z:3e74b584-3095-4065-acec-6b5eeda3cf92 + - EASTUS2:20260409T174427Z:254fd321-46ff-4eea-b27c-f07e165bef58 X-Msedge-Ref: - - 'Ref A: 3E0A80C2B392467FBB02319ACFE71953 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:51Z' + - 'Ref A: 548E8B7B68394049B98130EAD7744931 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:25Z' status: 200 OK code: 200 - duration: 2.725314961s - - id: 5 + duration: 1.952196416s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -379,10 +9603,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armkeyvault/v1.5.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva?api-version=2023-07-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva?api-version=2024-11-01 method: GET response: proto: HTTP/2.0 @@ -390,18 +9614,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 833 + content_length: 907 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T19:27:53.1Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T19:27:53.1Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lb61973-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva","name":"azdtest-d016896-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T17:44:25.518Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T17:44:25.518Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enabledForDiskEncryption":false,"enabledForTemplateDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-d016896-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache Content-Length: - - "833" + - "907" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:27:54 GMT + - Thu, 09 Apr 2026 17:44:26 GMT Expires: - "-1" Pragma: @@ -415,25 +9639,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 3db80ac3-4638-4b2e-90f5-336667eff116 + - aed58d8d-8d70-46be-ae50-2a98cb5a4dfa X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 X-Ms-Keyvault-Service-Version: - - 1.5.1455.0 + - 2.2.674.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e77e0838-351b-4a19-a4d9-b93a59f4945f + - d775e112-fe6f-4767-843d-7b3e7c499387 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192754Z:53578cda-6646-42db-a3c0-f0ffd9d73a93 + - EASTUS2:20260409T174427Z:1b934ac1-9ec1-4b90-be42-6a8f9154d810 X-Msedge-Ref: - - 'Ref A: 246C583804874FF1BCF8CB22E96F8782 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:54Z' + - 'Ref A: 13E40132ED714D298CDAD8CBE2C7A633 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:27Z' status: 200 OK code: 200 - duration: 187.34104ms - - id: 6 + duration: 107.09075ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -452,10 +9676,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armkeyvault/v1.5.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva?api-version=2023-07-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva?api-version=2024-11-01 method: GET response: proto: HTTP/2.0 @@ -463,18 +9687,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 828 + content_length: 902 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T19:27:53.1Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T19:27:53.1Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lb61973-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva","name":"azdtest-d016896-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T17:44:25.518Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T17:44:25.518Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enabledForDiskEncryption":false,"enabledForTemplateDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-d016896-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache Content-Length: - - "828" + - "902" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:24 GMT + - Thu, 09 Apr 2026 17:44:56 GMT Expires: - "-1" Pragma: @@ -488,36 +9712,36 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 36642e2e-83d4-4321-8a0d-1da285bc7ee3 + - f7adf006-f443-430a-bd88-cabbd0f68633 X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 X-Ms-Keyvault-Service-Version: - - 1.5.1455.0 + - 2.2.674.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a329c6ed-b0c5-4436-9364-cd75bb7dd3af + - bb74cdda-7120-4c67-8b78-7dbffff3c564 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192824Z:7faa7b3a-2ae4-4383-847a-a2a22038e447 + - EASTUS2:20260409T174457Z:a41d7c4d-efb6-4360-a75f-4173b8bcdecb X-Msedge-Ref: - - 'Ref A: BF4AF033884641DEBFAF70946B19C814 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:24Z' + - 'Ref A: 94FA9B80CF1B48EAAFE089396A273754 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:57Z' status: 200 OK code: 200 - duration: 195.994544ms - - id: 7 + duration: 91.210625ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 229 + content_length: 381 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"properties":{"principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483"}}' + body: '{"properties":{"principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva"}}' form: {} headers: Accept: @@ -527,14 +9751,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "229" + - "381" Content-Type: - application/json User-Agent: - - azsdk-go-armauthorization.RoleAssignmentsClient/v2.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva/providers/Microsoft.Authorization/roleAssignments/98408f8e-0730-4071-9f91-7ca966ecd37c?api-version=2022-04-01 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva/providers/Microsoft.Authorization/roleAssignments/28b328ca-63b1-47dc-b080-655661d8a15d?api-version=2022-04-01 method: PUT response: proto: HTTP/2.0 @@ -544,7 +9768,7 @@ interactions: trailer: {} content_length: 991 uncompressed: false - body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-27T19:28:25.9167453Z","updatedOn":"2025-01-27T19:28:26.1027468Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva/providers/Microsoft.Authorization/roleAssignments/98408f8e-0730-4071-9f91-7ca966ecd37c","type":"Microsoft.Authorization/roleAssignments","name":"98408f8e-0730-4071-9f91-7ca966ecd37c"}' + body: '{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva","condition":null,"conditionVersion":null,"createdOn":"2026-04-09T17:44:58.0504199Z","updatedOn":"2026-04-09T17:44:58.2034179Z","createdBy":null,"updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva/providers/Microsoft.Authorization/roleAssignments/28b328ca-63b1-47dc-b080-655661d8a15d","type":"Microsoft.Authorization/roleAssignments","name":"28b328ca-63b1-47dc-b080-655661d8a15d"}' headers: Cache-Control: - no-cache @@ -553,7 +9777,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:29 GMT + - Thu, 09 Apr 2026 17:45:00 GMT Expires: - "-1" Pragma: @@ -565,21 +9789,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 + - a88cf10d4ff442e269a9994cfa801fb0 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/2f3d5d14-95b9-409b-97bc-598ca3a5a602 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - d1766c43-2639-477f-833e-9720867a90bd + - 775c85c6-835f-43e3-82a3-d7859e52eac4 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192830Z:8bab5549-e9d9-4aeb-aaef-4808bf15b995 + - EASTUS2:20260409T174500Z:ded3b902-ae87-498b-9a86-508ec5e69b10 X-Msedge-Ref: - - 'Ref A: 51DA7F30363B41C996262EF508CD2FB9 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:25Z' + - 'Ref A: 9233BCD52DAF4174A590778C240F440A Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:44:57Z' status: 201 Created code: 201 - duration: 4.916743338s - - id: 8 + duration: 3.119766s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -587,7 +9813,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -602,10 +9828,10 @@ interactions: Content-Length: - "0" User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs?api-version=7.4 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs?api-version=7.6 method: PUT response: proto: HTTP/1.1 @@ -613,18 +9839,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 108 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "108" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:29 GMT + - Thu, 09 Apr 2026 17:45:01 GMT Expires: - "-1" Pragma: @@ -636,17 +9862,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 75e83651-5bcf-42de-b2b3-a18fd27b264b + - 5b137714-f4fb-4540-889d-bc4018234b08 status: 401 Unauthorized code: 401 - duration: 359.91795ms - - id: 9 + duration: 928.875209ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -654,7 +9880,7 @@ interactions: content_length: 36 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: '{"value":"THIS IS THE SECRET VALUE"}' @@ -671,10 +9897,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5d923cd306c352ec436b414eda031f88 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs?api-version=7.4 + - a88cf10d4ff442e269a9994cfa801fb0 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs?api-version=7.6 method: PUT response: proto: HTTP/1.1 @@ -684,7 +9910,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs/47ffe09a0b8243fa83c9fd6faa6258d8","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -693,7 +9919,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:29 GMT + - Thu, 09 Apr 2026 17:45:01 GMT Expires: - "-1" Pragma: @@ -703,19 +9929,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 50f72d3e-aa50-4e43-83ea-68cae4a4c8c6 + - acbccd6a-bc9a-4f8d-81b5-9cf5c42739f9 status: 200 OK code: 200 - duration: 297.763681ms - - id: 10 + duration: 274.135917ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -723,7 +9949,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -736,10 +9962,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 9986e5ef20afbfd371449d25948e30de + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -747,18 +9973,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 108 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "108" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:32 GMT + - Thu, 09 Apr 2026 17:45:04 GMT Expires: - "-1" Pragma: @@ -770,17 +9996,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 4526314d-7f45-41f2-b3a3-24496e0f42b2 + - 230de32c-e879-4f8f-8770-c58308f819bb status: 401 Unauthorized code: 401 - duration: 95.124271ms - - id: 11 + duration: 61.949791ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -788,7 +10014,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -801,10 +10027,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 9986e5ef20afbfd371449d25948e30de + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -814,7 +10040,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs/47ffe09a0b8243fa83c9fd6faa6258d8","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -823,7 +10049,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:33 GMT + - Thu, 09 Apr 2026 17:45:04 GMT Expires: - "-1" Pragma: @@ -833,19 +10059,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - e2e456af-4a44-4169-9746-34b419fd5c9c + - c40ee3e3-d99b-4ee7-8920-e399baf7e52f status: 200 OK code: 200 - duration: 114.866913ms - - id: 12 + duration: 96.619333ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -866,10 +10092,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -877,18 +10103,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35781 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35781" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:37 GMT + - Thu, 09 Apr 2026 17:45:05 GMT Expires: - "-1" Pragma: @@ -900,21 +10126,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee + - 9986e5ef20afbfd371449d25948e30de X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a86355ee-ad57-4d08-a597-915511111769 + - 6b2748fd-2f58-4537-8242-9b75d956d2a0 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192837Z:a86355ee-ad57-4d08-a597-915511111769 + - EASTUS:20260409T174506Z:6b2748fd-2f58-4537-8242-9b75d956d2a0 X-Msedge-Ref: - - 'Ref A: 30E7BBC128B84455903038DC307B589E Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:34Z' + - 'Ref A: FE769DEBF5C040EFAA17DE2BF95F6DFE Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:05Z' status: 200 OK code: 200 - duration: 3.520192189s - - id: 13 + duration: 1.126689291s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -922,7 +10148,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -935,10 +10161,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 9986e5ef20afbfd371449d25948e30de + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -946,18 +10172,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 108 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "108" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:36 GMT + - Thu, 09 Apr 2026 17:45:05 GMT Expires: - "-1" Pragma: @@ -969,17 +10195,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 694eb598-7f67-4801-8e51-cc667b2a56be + - 05499233-274a-49e6-913b-434b44ec93c1 status: 401 Unauthorized code: 401 - duration: 79.727076ms - - id: 14 + duration: 57.392625ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -987,7 +10213,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1000,10 +10226,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 9986e5ef20afbfd371449d25948e30de + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -1013,7 +10239,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs/47ffe09a0b8243fa83c9fd6faa6258d8","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1022,7 +10248,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:36 GMT + - Thu, 09 Apr 2026 17:45:05 GMT Expires: - "-1" Pragma: @@ -1032,19 +10258,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 8166b276-0f50-4627-9d90-469c69f02b95 + - 6e57f375-9cd2-421f-b8e5-f8a3ccf56a32 status: 200 OK code: 200 - duration: 75.383523ms - - id: 15 + duration: 55.075125ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1065,10 +10291,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1076,18 +10302,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8031 + content_length: 960970 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "8031" + - "960970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:37 GMT + - Thu, 09 Apr 2026 17:45:09 GMT Expires: - "-1" Pragma: @@ -1099,70 +10325,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee + - 9986e5ef20afbfd371449d25948e30de X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 01b1f49d-4c1c-4dac-b37a-da9594bfb611 + - 886a64ca-775d-4d01-8730-23ff89184dc2 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192838Z:01b1f49d-4c1c-4dac-b37a-da9594bfb611 + - EASTUS:20260409T174510Z:886a64ca-775d-4d01-8730-23ff89184dc2 X-Msedge-Ref: - - 'Ref A: 6C3DEDE752614BB8B31B54E159AFC3B3 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:37Z' + - 'Ref A: 367DE17C96CF4DF58C51CF63C193ED5D Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:06Z' status: 200 OK code: 200 - duration: 193.976771ms - - id: 16 + duration: 4.096898166s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1361 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb61973"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "1361" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 - method: PUT + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 893 + content_length: 858118 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T19:28:40.3655384Z","duration":"PT0.0009565S","correlationId":"22359bab11d5f5cc51fc9ef1673ec6ee","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007670253186?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "893" + - "858118" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:28:41 GMT + - Thu, 09 Apr 2026 17:45:14 GMT Expires: - "-1" Pragma: @@ -1174,23 +10392,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - X-Ms-Deployment-Engine-Version: - - 1.224.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - 9986e5ef20afbfd371449d25948e30de + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 68a8dd9e-70dd-498a-9bdb-64b8cde7023e + - 8ee95069-7588-4445-9584-2264307d8e8b X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192841Z:68a8dd9e-70dd-498a-9bdb-64b8cde7023e + - EASTUS:20260409T174515Z:8ee95069-7588-4445-9584-2264307d8e8b X-Msedge-Ref: - - 'Ref A: F6E6C279D8AA4D68B381BF85DCF7FD6F Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:38Z' - status: 201 Created - code: 201 - duration: 3.011670051s - - id: 17 + - 'Ref A: CA570F4AF4334791ACC084EA15534738 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:11Z' + status: 200 OK + code: 200 + duration: 4.695181792s + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1209,10 +10425,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007670253186?api-version=2021-04-01 + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1220,18 +10436,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 515084 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:11 GMT + - Thu, 09 Apr 2026 17:45:16 GMT Expires: - "-1" Pragma: @@ -1243,21 +10459,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee + - 9986e5ef20afbfd371449d25948e30de X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ca315ec9-25ef-4170-88d0-8a9f446b5252 + - cac2e88d-5be3-446c-a2e3-ab96a189ac0a X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192911Z:ca315ec9-25ef-4170-88d0-8a9f446b5252 + - EASTUS2:20260409T174517Z:cac2e88d-5be3-446c-a2e3-ab96a189ac0a X-Msedge-Ref: - - 'Ref A: 74BACAA6F61E4906807A8A11E870B168 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:11Z' + - 'Ref A: 94C97501E24142C49D7FC76336CAE15C Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:15Z' status: 200 OK code: 200 - duration: 223.688509ms - - id: 18 + duration: 1.36268325s + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1276,10 +10492,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1287,18 +10503,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 415580 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T19:28:45.7819846Z","duration":"PT5.4174027S","correlationId":"22359bab11d5f5cc51fc9ef1673ec6ee","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1101" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:11 GMT + - Thu, 09 Apr 2026 17:45:17 GMT Expires: - "-1" Pragma: @@ -1310,21 +10526,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee + - 9986e5ef20afbfd371449d25948e30de X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9e39ea1b-4747-4cd8-9f12-0617f5671393 + - c3b3e3da-727e-47d4-adf8-9093c78e97b3 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192911Z:9e39ea1b-4747-4cd8-9f12-0617f5671393 + - EASTUS2:20260409T174518Z:c3b3e3da-727e-47d4-adf8-9093c78e97b3 X-Msedge-Ref: - - 'Ref A: 0289C0AE04334CECBDEFD4B21A3B21F2 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:11Z' + - 'Ref A: 2733FF2E72AE4CA2B92308955AC48F76 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:17Z' status: 200 OK code: 200 - duration: 296.176255ms - - id: 19 + duration: 803.63325ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1338,17 +10554,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb61973%27&api-version=2021-04-01 + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1356,18 +10570,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 136970 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973","name":"rg-azdtest-lb61973","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "288" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:11 GMT + - Thu, 09 Apr 2026 17:45:18 GMT Expires: - "-1" Pragma: @@ -1379,32 +10593,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee + - 9986e5ef20afbfd371449d25948e30de X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4a4797a4-a9f6-4fab-9207-ed36c24b6b45 + - c0112e51-77ab-4a98-b076-1761efc1e144 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192912Z:4a4797a4-a9f6-4fab-9207-ed36c24b6b45 + - EASTUS2:20260409T174519Z:c0112e51-77ab-4a98-b076-1761efc1e144 X-Msedge-Ref: - - 'Ref A: 8F23EA34DC9C41BAA65823486C3A438C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:11Z' + - 'Ref A: 3FC95A16C0E4414FA582D82BD7EB7E6A Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:18Z' status: 200 OK code: 200 - duration: 50.868793ms - - id: 20 + duration: 1.007565042s + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 1432 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d016896","reference":null},"location":{"value":"eastus2","reference":null},"secretParam":{"value":"THIS IS THE SECRET VALUE","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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"}}' form: {} headers: Accept: @@ -1413,63 +10627,71 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "1432" + Content-Type: + - application/json User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 - method: GET + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/validate?api-version=2021-04-01 + method: POST 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: 97 + content_length: 1025 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:45:20.5742388Z","duration":"PT0S","correlationId":"9986e5ef20afbfd371449d25948e30de","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "1025" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:12 GMT + - Thu, 09 Apr 2026 17:45:20 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000;includeSubDomains - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + X-Ms-Correlation-Request-Id: + - 9986e5ef20afbfd371449d25948e30de + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - fc1ece8d-8a86-4d28-9e00-1124fb5cd965 - status: 401 Unauthorized - code: 401 - duration: 75.939285ms - - id: 21 + - e9abf71e-0769-4a86-99e6-4b3e6c713c9e + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174520Z:e9abf71e-0769-4a86-99e6-4b3e6c713c9e + X-Msedge-Ref: + - 'Ref A: C373A65B87D84EA694B65405503B17CA Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:20Z' + status: 200 OK + code: 200 + duration: 601.147209ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 1432 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d016896","reference":null},"location":{"value":"eastus2","reference":null},"secretParam":{"value":"THIS IS THE SECRET VALUE","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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"}}' form: {} headers: Accept: @@ -1478,52 +10700,64 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "1432" + Content-Type: + - application/json User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22359bab11d5f5cc51fc9ef1673ec6ee - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 - method: GET + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660?api-version=2021-04-01 + method: PUT 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: 281 + content_length: 913 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:45:21.208884Z","duration":"PT0.0007369S","correlationId":"9986e5ef20afbfd371449d25948e30de","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/operationStatuses/08584258501642587093?api-version=2021-04-01&t=639113535215057568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=oVpfnpgPt2taZsO7w94GkPt5hPklFbGwmi4Iz2i_i2LDS59QSFGa78wWybFxRbsVSVE6rVCxXyob92Ek-VgL3mMxAJwjSgtdMFB-Pv_90XlIEsyUtzzwalOW73MBQZwGtGVtK_rUch3BxrlLGlqMd5BLLSMtDZgK7Pr2P_a0vhKzHkyTVAnzIuQN6AG_bB451H99YGNz_WGK6VEwycl41VB3m5RMeLpmjXEYkte3ql--uOzzdNUXHVgQnplYR2SVYTksw2iq2Wp6Wt4oMV3a5X_GWmwFK0VKvueNQb1xcecbYUdppIFyzmGQu5-YE4dj9G2ADYcuizdTFbTQQegZew&h=CgWjjBU3MjZa2-VVfT-I_VRKgUSM_OWSKitXMsU4lRw Cache-Control: - no-cache Content-Length: - - "281" + - "913" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:12 GMT + - Thu, 09 Apr 2026 17:45:20 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000;includeSubDomains + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + X-Ms-Correlation-Request-Id: + - 9986e5ef20afbfd371449d25948e30de + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - bb70b808-7d4e-43cd-b17a-355ba0eca9f4 - status: 200 OK - code: 200 - duration: 120.463103ms - - id: 22 + - b38794e0-7c3a-4dea-bd14-66e54ec68684 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T174521Z:b38794e0-7c3a-4dea-bd14-66e54ec68684 + X-Msedge-Ref: + - 'Ref A: 9C9750A563E740F29B690E3D34CB81B4 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:20Z' + status: 201 Created + code: 201 + duration: 634.529041ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1537,17 +10771,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b2c1f939060d80aa29d011152332b5ff - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/operationStatuses/08584258501642587093?api-version=2021-04-01&t=639113535215057568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=oVpfnpgPt2taZsO7w94GkPt5hPklFbGwmi4Iz2i_i2LDS59QSFGa78wWybFxRbsVSVE6rVCxXyob92Ek-VgL3mMxAJwjSgtdMFB-Pv_90XlIEsyUtzzwalOW73MBQZwGtGVtK_rUch3BxrlLGlqMd5BLLSMtDZgK7Pr2P_a0vhKzHkyTVAnzIuQN6AG_bB451H99YGNz_WGK6VEwycl41VB3m5RMeLpmjXEYkte3ql--uOzzdNUXHVgQnplYR2SVYTksw2iq2Wp6Wt4oMV3a5X_GWmwFK0VKvueNQb1xcecbYUdppIFyzmGQu5-YE4dj9G2ADYcuizdTFbTQQegZew&h=CgWjjBU3MjZa2-VVfT-I_VRKgUSM_OWSKitXMsU4lRw method: GET response: proto: HTTP/2.0 @@ -1555,18 +10787,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4008 + content_length: 22 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "4008" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:12 GMT + - Thu, 09 Apr 2026 17:45:51 GMT Expires: - "-1" Pragma: @@ -1578,21 +10810,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b2c1f939060d80aa29d011152332b5ff + - 9986e5ef20afbfd371449d25948e30de X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - eb3d8fdd-7db0-46a6-a05a-144ecfaa1e45 + - 2fe9222f-1842-49b7-8c88-56cf00c1cbec X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192912Z:eb3d8fdd-7db0-46a6-a05a-144ecfaa1e45 + - EASTUS:20260409T174551Z:2fe9222f-1842-49b7-8c88-56cf00c1cbec X-Msedge-Ref: - - 'Ref A: B19C42834CF24D3285BEED09A716D5A1 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:12Z' + - 'Ref A: 4FAAB5BD6FE040FF9A54ED96FBBEDCD9 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:51Z' status: 200 OK code: 200 - duration: 219.587958ms - - id: 23 + duration: 136.186083ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1600,77 +10832,77 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "0" User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b2c1f939060d80aa29d011152332b5ff - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2?api-version=7.4 - method: PUT + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660?api-version=2021-04-01 + 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: 97 + content_length: 1122 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:45:27.2302104Z","duration":"PT6.0213264S","correlationId":"9986e5ef20afbfd371449d25948e30de","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "1122" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:12 GMT + - Thu, 09 Apr 2026 17:45:51 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000;includeSubDomains - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + X-Ms-Correlation-Request-Id: + - 9986e5ef20afbfd371449d25948e30de + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - d7302278-74ee-47a6-8ce2-f6d6c59f7d1b - status: 401 Unauthorized - code: 401 - duration: 76.39039ms - - id: 24 + - 8aebaaaa-dc06-4011-9ee6-9f74fa193eef + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174551Z:8aebaaaa-dc06-4011-9ee6-9f74fa193eef + X-Msedge-Ref: + - 'Ref A: 0618AE9207E94AE6B02BE46EB4C5818E Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:51Z' + status: 200 OK + code: 200 + duration: 154.574959ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 40 + content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" - body: '{"value":"THIS IS THE NEW SECRET VALUE"}' + body: "" form: {} headers: Accept: @@ -1679,56 +10911,56 @@ interactions: - gzip Authorization: - SANITIZED - Content-Length: - - "40" - Content-Type: - - application/json User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b2c1f939060d80aa29d011152332b5ff - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2?api-version=7.4 - method: PUT + - 9986e5ef20afbfd371449d25948e30de + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d016896%27&api-version=2021-04-01 + 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: 286 + content_length: 288 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896","name":"rg-azdtest-d016896","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "286" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:12 GMT + - Thu, 09 Apr 2026 17:45:51 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000;includeSubDomains + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + X-Ms-Correlation-Request-Id: + - 9986e5ef20afbfd371449d25948e30de + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - d9bfbec7-97a7-4062-a0f9-486c06d2e8dd + - 47111143-b0b8-4f3a-bef9-506d9f2f1c67 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T174552Z:47111143-b0b8-4f3a-bef9-506d9f2f1c67 + X-Msedge-Ref: + - 'Ref A: AC0BC8D4C2D44D6EAAEBD3A836B44C7A Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:52Z' status: 200 OK code: 200 - duration: 140.613438ms - - id: 25 + duration: 173.181792ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1736,7 +10968,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1749,10 +10981,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 + - 9986e5ef20afbfd371449d25948e30de + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -1760,18 +10992,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 108 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "108" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:16 GMT + - Thu, 09 Apr 2026 17:45:51 GMT Expires: - "-1" Pragma: @@ -1783,17 +11015,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - b750e06e-b0de-4935-9767-c307e527f842 + - e79364aa-a723-4281-b8bf-b6dffb843c89 status: 401 Unauthorized code: 401 - duration: 82.621257ms - - id: 26 + duration: 50.514917ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1801,7 +11033,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1814,10 +11046,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 + - 9986e5ef20afbfd371449d25948e30de + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -1825,18 +11057,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 286 + content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs/47ffe09a0b8243fa83c9fd6faa6258d8","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache Content-Length: - - "286" + - "281" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:16 GMT + - Thu, 09 Apr 2026 17:45:51 GMT Expires: - "-1" Pragma: @@ -1846,19 +11078,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 9ba085af-c4ec-44f7-b203-76126934801b + - ba59cae2-1a5e-4947-9b41-d3795f610a07 status: 200 OK code: 200 - duration: 110.896284ms - - id: 27 + duration: 102.162041ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1866,23 +11098,19 @@ 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 User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -1890,44 +11118,3265 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35781 + content_length: 138770 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "35781" + - "138770" + 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: - - Mon, 27 Jan 2025 19:29:18 GMT + - Thu, 09 Apr 2026 17:45:52 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:50:52 GMT + Source-Age: + - "91" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 5a833610-7129-45f5-bbc9-1a5d0c6f56f4 - X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192919Z:5a833610-7129-45f5-bbc9-1a5d0c6f56f4 - X-Msedge-Ref: - - 'Ref A: 63BD0E4157A248DC98492DD4AD3271D1 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:16Z' + X-Fastly-Request-Id: + - 993aa1797a6456730514462ecf93ca3207ae630d + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756753.846107,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 2.835609096s - - id: 28 + duration: 103.010125ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1935,23 +14384,19 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: aka.ms remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 + - 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 @@ -1959,40 +14404,36 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 0 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "97" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Mon, 27 Jan 2025 19:29:19 GMT + - Thu, 09 Apr 2026 17:45:53 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:45:53 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 - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" - X-Content-Type-Options: - - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - 13bebf6f-3a3d-4dc8-b9af-b502acbe737f - status: 401 Unauthorized - code: 401 - duration: 68.816294ms - - id: 29 + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 331.993625ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2000,64 +14441,4361 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + 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-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 + - 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: 286 + content_length: 195006 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + 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" + } + } + } + ] + }, + { + "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: - - "286" + - "195006" + 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: - - Mon, 27 Jan 2025 19:29:19 GMT + - Thu, 09 Apr 2026 17:45:53 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:50:53 GMT + Source-Age: + - "91" Strict-Transport-Security: - - max-age=31536000;includeSubDomains + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - c8cc5ba9-c097-4373-82e2-56757c0dfac9 + X-Fastly-Request-Id: + - d5655ec6a1d616f385e81800efeb87ab0eaa7f3a + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756753.231713,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 104.382005ms - - id: 30 + duration: 21.507708ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2065,216 +18803,1516 @@ 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.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 9133 + content_length: 0 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","location":"eastus2","name":"azdtest-lb61973-1738006065","properties":{"correlationId":"22359bab11d5f5cc51fc9ef1673ec6ee","dependencies":[],"duration":"PT5.4174027S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T19:28:45.7819846Z"},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"type":"Microsoft.Resources/deployments"}]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "9133" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Mon, 27 Jan 2025 19:29:20 GMT + - Thu, 09 Apr 2026 17:45:53 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:45:53 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 3c1a0a64-0bc1-4d91-8b0b-336aa6b36d9b - X-Ms-Routing-Request-Id: - - WESTUS:20250127T192920Z:3c1a0a64-0bc1-4d91-8b0b-336aa6b36d9b - X-Msedge-Ref: - - 'Ref A: 4BA2BE34E5AE491089DC05619E4667B5 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:19Z' - status: 200 OK - code: 200 - duration: 930.099223ms - - id: 31 + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 124.507834ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1012 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "1012" - Content-Type: - - application/json + Referer: + - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 - method: POST + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1178 + content_length: 41722 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.33.13.18514\",\"TEMPLATEHASH\":\"7230513710032888086\"}}}","templateHash":"7230513710032888086"}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "1178" + - "41722" + 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: - - Mon, 27 Jan 2025 19:29:20 GMT + - Thu, 09 Apr 2026 17:45:53 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:50:53 GMT + Source-Age: + - "91" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "799" - X-Ms-Request-Id: - - 78aa426a-d2c1-4c54-b0b6-606eaa326c50 - X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192920Z:78aa426a-d2c1-4c54-b0b6-606eaa326c50 - X-Msedge-Ref: - - 'Ref A: BA23AEBDE5D747B398DD36A6E39FB37E Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:20Z' + X-Fastly-Request-Id: + - 4ff0c21d2e6dce862472c5dcd15a195096feb816 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756753.398031,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 44.827617ms - - id: 32 + duration: 17.413625ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1365 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb61973"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "1365" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 - method: PUT + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 893 + content_length: 16828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T19:29:24.3091459Z","duration":"PT0.0002208S","correlationId":"eb1957cf972be2975de88c3bafd1ed48","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007245562031?api-version=2021-04-01 + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "893" + - "16828" + 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: - - Mon, 27 Jan 2025 19:29:24 GMT + - Thu, 09 Apr 2026 17:45:53 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:50:53 GMT + Source-Age: + - "91" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - X-Ms-Deployment-Engine-Version: - - 1.224.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - 2f22d53e-3e63-4ad4-9d1b-6e926865387c - X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192924Z:2f22d53e-3e63-4ad4-9d1b-6e926865387c - X-Msedge-Ref: - - 'Ref A: CAC37AB0E57E4B2189C0F998907E293C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:20Z' + X-Fastly-Request-Id: + - f413680b56ee0cd547098d2bd355991685012dab + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756753.424479,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 4.3444333s - - id: 33 + duration: 13.967458ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2282,7 +20320,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -2293,10 +20331,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007245562031?api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -2304,44 +20340,3265 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 138770 uncompressed: false - body: '{"status":"Succeeded"}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "22" + - "138770" + 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: - - Mon, 27 Jan 2025 19:29:55 GMT + - Thu, 09 Apr 2026 17:45:53 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:50:53 GMT + Source-Age: + - "92" 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: - - eb1957cf972be2975de88c3bafd1ed48 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 0d228f8c-8e81-48d2-9d26-d3123e1a7703 - X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192955Z:0d228f8c-8e81-48d2-9d26-d3123e1a7703 - X-Msedge-Ref: - - 'Ref A: 2C9471653ECE4954828E1D5FBD53EBD5 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:55Z' + X-Fastly-Request-Id: + - ea4c41d9661a658ce6d2e2c994d3e2eb23b24b5b + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756754.506569,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 218.6147ms - - id: 34 + duration: 20.0715ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2349,7 +23606,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -2360,55 +23617,45 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?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/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1105 + content_length: 0 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T19:29:29.6778689Z","duration":"PT5.3689438S","correlationId":"eb1957cf972be2975de88c3bafd1ed48","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}]}}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "1105" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Mon, 27 Jan 2025 19:29:55 GMT + - Thu, 09 Apr 2026 17:45:53 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:45:53 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - e483783d-45d0-4190-ba9b-48871abeeb1b - X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192955Z:e483783d-45d0-4190-ba9b-48871abeeb1b - X-Msedge-Ref: - - 'Ref A: 3593EAA96FDF473E81B464A86AA138D9 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:55Z' - status: 200 OK - code: 200 - duration: 188.895874ms - - id: 35 + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 41.296417ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2416,23 +23663,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.ResourceGroupsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb61973%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 @@ -2440,44 +23685,4339 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 195006 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973","name":"rg-azdtest-lb61973","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973"},"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" + } + } + } + ] + }, + { + "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: - - "288" + - "195006" + 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: - - Mon, 27 Jan 2025 19:29:55 GMT + - Thu, 09 Apr 2026 17:45:53 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:50:53 GMT + Source-Age: + - "91" 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: - - eb1957cf972be2975de88c3bafd1ed48 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" - X-Ms-Request-Id: - - e0fd0a41-a27e-4bcd-8e50-97b6655b02a2 - X-Ms-Routing-Request-Id: - - WESTUS2:20250127T192955Z:e0fd0a41-a27e-4bcd-8e50-97b6655b02a2 - X-Msedge-Ref: - - 'Ref A: 9F2A46DBD881470487B930779A3D3D2C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:55Z' + X-Fastly-Request-Id: + - ae47354750413909dc32596399427edf1bf39159 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756754.580007,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 40.436744ms - - id: 36 + duration: 21.489667ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2485,23 +28025,19 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: aka.ms remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev method: GET response: proto: HTTP/1.1 @@ -2509,40 +28045,36 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 0 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "97" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Mon, 27 Jan 2025 19:29:55 GMT + - Thu, 09 Apr 2026 17:45:53 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:45:53 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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 - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" - X-Content-Type-Options: - - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - 530455ca-84c8-4dfd-ac56-46711230be45 - status: 401 Unauthorized - code: 401 - duration: 77.271648ms - - id: 37 + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 39.284708ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2550,64 +28082,976 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + 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/dev User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - eb1957cf972be2975de88c3bafd1ed48 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/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: 286 + content_length: 41722 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "286" + - "41722" + 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: - - Mon, 27 Jan 2025 19:29:55 GMT + - Thu, 09 Apr 2026 17:45:53 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:50:53 GMT + Source-Age: + - "91" Strict-Transport-Security: - - max-age=31536000;includeSubDomains + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "1" X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - 5c715b68-91e0-4e67-89cc-78d041f6b3f1 + X-Fastly-Request-Id: + - b17a20a44611de16cfd53ea35bba0a4fb2c1c005 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756754.653107,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 86.756253ms - - id: 38 + duration: 14.887167ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2615,23 +29059,19 @@ 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 User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 1284bc61b177d93c0e4f9736819050a3 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json method: GET response: proto: HTTP/2.0 @@ -2639,18 +29079,505 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4008 + content_length: 16828 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:45:53 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:50:53 GMT + Source-Age: + - "91" + 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: + - 288e57b980a697d3e31787c700800e72f3cf27e8 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756754.677283,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.302833ms + - id: 45 + 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-armkeyvault/v1.5.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 23f5fd8cbdb433294127cd48f611fffa + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 499 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev/providers/Microsoft.KeyVault/vaults/kv-kktuwqpce2enu","name":"kv-kktuwqpce2enu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva","name":"azdtest-d016896-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4008" + - "499" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:56 GMT + - Thu, 09 Apr 2026 17:45:53 GMT Expires: - "-1" Pragma: @@ -2662,21 +29589,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1284bc61b177d93c0e4f9736819050a3 + - 23f5fd8cbdb433294127cd48f611fffa X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 99e3d878-6781-4d32-abaa-0277790226de + - 9959bdf7-be15-46a0-bb8b-0baf1fa2ccdd X-Ms-Routing-Request-Id: - - WESTUS:20250127T192956Z:99e3d878-6781-4d32-abaa-0277790226de + - EASTUS2:20260409T174554Z:9959bdf7-be15-46a0-bb8b-0baf1fa2ccdd X-Msedge-Ref: - - 'Ref A: E1744297F7BD4DA7BDBA57BF6A5F52A4 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:56Z' + - 'Ref A: AA46038ACEFD4B7F938EA01BA2F79BA1 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:53Z' status: 200 OK code: 200 - duration: 263.565089ms - - id: 39 + duration: 150.788458ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2684,7 +29611,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2696,30 +29623,32 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "0" User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1284bc61b177d93c0e4f9736819050a3 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets?api-version=7.4 - method: GET + - 23f5fd8cbdb433294127cd48f611fffa + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2?api-version=7.6 + method: PUT response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 108 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "108" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:56 GMT + - Thu, 09 Apr 2026 17:45:53 GMT Expires: - "-1" Pragma: @@ -2731,28 +29660,28 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 827c84c5-a15b-4751-851f-6eead41bae23 + - 7128f5b1-1403-444f-9eb1-90049f91218b status: 401 Unauthorized code: 401 - duration: 77.324448ms - - id: 40 + duration: 41.421209ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 40 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" - body: "" + body: '{"value":"THIS IS THE NEW SECRET VALUE"}' form: {} headers: Accept: @@ -2761,30 +29690,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "40" + Content-Type: + - application/json User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1284bc61b177d93c0e4f9736819050a3 - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets?api-version=7.4 - method: GET + - 23f5fd8cbdb433294127cd48f611fffa + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2?api-version=7.6 + method: PUT response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 286 uncompressed: false - body: '{"value":[{"id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs2/f1c7504a57d142c38b0d8b4a1f30ac3b","attributes":{"enabled":true,"created":1775756754,"updated":1775756754,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache Content-Length: - - "456" + - "286" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:56 GMT + - Thu, 09 Apr 2026 17:45:53 GMT Expires: - "-1" Pragma: @@ -2794,19 +29727,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - d1ac21d5-ac7e-4906-b9fd-587035de17e9 + - ff9737dc-d8c9-4f05-bef5-1cf6e9613234 status: 200 OK code: 200 - duration: 163.074588ms - - id: 41 + duration: 117.1505ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2814,7 +29747,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2827,10 +29760,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -2838,18 +29771,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 108 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "108" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:59 GMT + - Thu, 09 Apr 2026 17:45:55 GMT Expires: - "-1" Pragma: @@ -2861,17 +29794,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - fe71c46c-6d18-4683-a138-b98ac8730070 + - 595363e3-5b64-4e35-9066-e50ec017b375 status: 401 Unauthorized code: 401 - duration: 71.032575ms - - id: 42 + duration: 48.106625ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2879,7 +29812,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2892,10 +29825,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -2903,18 +29836,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs2/f1c7504a57d142c38b0d8b4a1f30ac3b","attributes":{"enabled":true,"created":1775756754,"updated":1775756754,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache Content-Length: - - "281" + - "286" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:29:59 GMT + - Thu, 09 Apr 2026 17:45:55 GMT Expires: - "-1" Pragma: @@ -2924,19 +29857,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 89b6840f-2354-429c-88bf-625379c4db65 + - 096cdd27-5b57-4850-b60c-dfad5a3b1a3a status: 200 OK code: 200 - duration: 88.933471ms - - id: 43 + duration: 73.00775ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2957,10 +29890,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -2968,18 +29901,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35781 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35781" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:02 GMT + - Thu, 09 Apr 2026 17:45:56 GMT Expires: - "-1" Pragma: @@ -2991,21 +29924,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e820a508-8307-46cb-9fae-81ccb37625f8 + - 1a98da5a-d60d-468b-b7a9-83c00815c494 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T193002Z:e820a508-8307-46cb-9fae-81ccb37625f8 + - EASTUS:20260409T174557Z:1a98da5a-d60d-468b-b7a9-83c00815c494 X-Msedge-Ref: - - 'Ref A: FDA1A32D5EF94E86B15A4C4911ACE231 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:59Z' + - 'Ref A: 14B7D7EFC40640FEA0E32B38C28E596E Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:56Z' status: 200 OK code: 200 - duration: 2.837714303s - - id: 44 + duration: 1.144036791s + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3013,7 +29946,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3026,10 +29959,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -3037,18 +29970,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 108 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "108" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:02 GMT + - Thu, 09 Apr 2026 17:45:57 GMT Expires: - "-1" Pragma: @@ -3060,17 +29993,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - cf3a1bb6-8b9b-4c0e-b64b-85f3d0525ce0 + - 16c173d7-cfb7-4bf3-b38a-864fc25afb86 status: 401 Unauthorized code: 401 - duration: 74.652211ms - - id: 45 + duration: 81.506625ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3078,7 +30011,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: azdtest-d016896-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3091,10 +30024,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2/?api-version=7.6 method: GET response: proto: HTTP/1.1 @@ -3102,18 +30035,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs2/f1c7504a57d142c38b0d8b4a1f30ac3b","attributes":{"enabled":true,"created":1775756754,"updated":1775756754,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache Content-Length: - - "281" + - "286" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:02 GMT + - Thu, 09 Apr 2026 17:45:57 GMT Expires: - "-1" Pragma: @@ -3123,19 +30056,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 7d1e74b1-eb16-42d0-b89e-ce762d1da49d + - eb6337a2-4708-4f3b-943b-48f1d9880905 status: 200 OK code: 200 - duration: 84.182414ms - - id: 46 + duration: 133.909375ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3156,10 +30089,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3167,18 +30100,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9137 + content_length: 962093 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","location":"eastus2","name":"azdtest-lb61973-1738006065","properties":{"correlationId":"eb1957cf972be2975de88c3bafd1ed48","dependencies":[],"duration":"PT5.3689438S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T19:29:29.6778689Z"},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","location":"eastus2","name":"azdtest-d016896-1775756660","properties":{"correlationId":"9986e5ef20afbfd371449d25948e30de","dependencies":[],"duration":"PT6.0213264S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"15217396239890875345","timestamp":"2026-04-09T17:45:27.2302104Z"},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "9137" + - "962093" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:03 GMT + - Thu, 09 Apr 2026 17:46:02 GMT Expires: - "-1" Pragma: @@ -3190,68 +30123,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4f96f064-4e0a-404b-9886-09f753656c7e + - 22258390-999d-49ec-b930-0c8572019de9 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T193003Z:4f96f064-4e0a-404b-9886-09f753656c7e + - EASTUS:20260409T174602Z:22258390-999d-49ec-b930-0c8572019de9 X-Msedge-Ref: - - 'Ref A: 3DC04AEB4F844461B63F5ACD32909AEF Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:03Z' + - 'Ref A: 579DE840999643E6BD183D36CFD881CC Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:45:58Z' status: 200 OK code: 200 - duration: 771.775781ms - - id: 47 + duration: 4.6062845s + - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1012 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "1012" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 - method: POST + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1178 + content_length: 858118 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.33.13.18514\",\"TEMPLATEHASH\":\"7230513710032888086\"}}}","templateHash":"7230513710032888086"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1178" + - "858118" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:03 GMT + - Thu, 09 Apr 2026 17:46:04 GMT Expires: - "-1" Pragma: @@ -3263,68 +30190,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "799" + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 7bf54825-c670-4f0a-993d-a78a1dcc7459 + - aaaa64fb-06eb-44a3-93a2-5fa64ef9451a X-Ms-Routing-Request-Id: - - WESTUS2:20250127T193003Z:7bf54825-c670-4f0a-993d-a78a1dcc7459 + - EASTUS2:20260409T174605Z:aaaa64fb-06eb-44a3-93a2-5fa64ef9451a X-Msedge-Ref: - - 'Ref A: 2613EB0EF73A44E7B3E25306B28B91F3 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:03Z' + - 'Ref A: 325C5A8A106541C9AE17B965B61B1669 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:03Z' status: 200 OK code: 200 - duration: 39.113925ms - - id: 48 + duration: 2.424375583s + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1361 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb61973"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "1361" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 - method: PUT + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 893 + content_length: 515084 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T19:30:07.5841888Z","duration":"PT0.0008561S","correlationId":"754d0bd12d84228d6f107e123406cd7d","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636006809963603?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "893" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:07 GMT + - Thu, 09 Apr 2026 17:46:06 GMT Expires: - "-1" Pragma: @@ -3336,23 +30257,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - X-Ms-Deployment-Engine-Version: - - 1.224.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - cd1f683a-a15f-4805-9376-eea251586df5 + - c0962373-9798-4b97-a760-306939cab553 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T193008Z:cd1f683a-a15f-4805-9376-eea251586df5 + - EASTUS2:20260409T174607Z:c0962373-9798-4b97-a760-306939cab553 X-Msedge-Ref: - - 'Ref A: 6AC3B960A9FD498A99BAC33ABAF2EFB1 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:03Z' + - 'Ref A: EC8741B0EE494DBE86A2252B90809E9B Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:05Z' status: 200 OK code: 200 - duration: 4.134949745s - - id: 49 + duration: 1.546873333s + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3371,10 +30290,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636006809963603?api-version=2021-04-01 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3382,18 +30301,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 415580 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:38 GMT + - Thu, 09 Apr 2026 17:46:07 GMT Expires: - "-1" Pragma: @@ -3405,21 +30324,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 8d43f0ac-18fd-486f-bf5a-8417ac1184da + - da51d57e-e743-427a-8dc6-db0a13592c30 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T193038Z:8d43f0ac-18fd-486f-bf5a-8417ac1184da + - EASTUS2:20260409T174608Z:da51d57e-e743-427a-8dc6-db0a13592c30 X-Msedge-Ref: - - 'Ref A: AD7CE6D7511A4200B66D3EB691D8EFCF Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:38Z' + - 'Ref A: 699EB0D54C6E4FF182A5B146ABD36680 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:07Z' status: 200 OK code: 200 - duration: 197.647648ms - - id: 50 + duration: 928.14775ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3438,10 +30357,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3449,18 +30368,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T19:30:12.4689293Z","duration":"PT4.8855966S","correlationId":"754d0bd12d84228d6f107e123406cd7d","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1101" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:38 GMT + - Thu, 09 Apr 2026 17:46:07 GMT Expires: - "-1" Pragma: @@ -3472,32 +30391,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - 30a07357-b392-4582-9619-a4bd1fb7aefe + - c8ead89d-0d19-4a0e-a473-91db590630fd X-Ms-Routing-Request-Id: - - WESTUS2:20250127T193038Z:30a07357-b392-4582-9619-a4bd1fb7aefe + - EASTUS2:20260409T174608Z:c8ead89d-0d19-4a0e-a473-91db590630fd X-Msedge-Ref: - - 'Ref A: FB05BDD3A2E841D887653B65AA7ABAA5 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:38Z' + - 'Ref A: 17DE7B6B9E84445E83E5685919241519 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:08Z' status: 200 OK code: 200 - duration: 210.199978ms - - id: 51 + duration: 481.678208ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 1012 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"$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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' form: {} headers: Accept: @@ -3506,30 +30425,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "1012" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb61973%27&api-version=2021-04-01 - method: GET + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 1179 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973","name":"rg-azdtest-lb61973","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"15217396239890875345\"}}}","templateHash":"15217396239890875345"}' headers: Cache-Control: - no-cache Content-Length: - - "288" + - "1179" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:39 GMT + - Thu, 09 Apr 2026 17:46:07 GMT Expires: - "-1" Pragma: @@ -3541,32 +30464,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 337616e8-db7c-4511-9152-26d5bf458466 + - 7a372aec-684a-46f0-8ca5-0ed6672f5120 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T193039Z:337616e8-db7c-4511-9152-26d5bf458466 + - EASTUS2:20260409T174608Z:7a372aec-684a-46f0-8ca5-0ed6672f5120 X-Msedge-Ref: - - 'Ref A: A1588B369C874F3FA53ED4F2299FE21C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:38Z' + - 'Ref A: D3133806503B44299B200F6C6146866C Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:08Z' status: 200 OK code: 200 - duration: 439.288747ms - - id: 52 + duration: 68.23775ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 1436 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d016896","reference":null},"location":{"value":"eastus2","reference":null},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE","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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"99107b403756766ad9f5f93e1d1c4691755e0a2a9b8f0ea0cbe87aebe5bb9e1c"}}' form: {} headers: Accept: @@ -3575,52 +30496,137 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "1436" + Content-Type: + - application/json User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 - method: GET + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/validate?api-version=2021-04-01 + method: POST response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1025 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"99107b403756766ad9f5f93e1d1c4691755e0a2a9b8f0ea0cbe87aebe5bb9e1c"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:46:10.7404814Z","duration":"PT0S","correlationId":"1b6fc6bdcb7c8ce5a97d34080af5aa90","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1025" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:10 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 9a106d81-1715-40b7-a083-b8ead1f475e7 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174611Z:9a106d81-1715-40b7-a083-b8ead1f475e7 + X-Msedge-Ref: + - 'Ref A: E0EC5A9640EE4CC69B9C0EBAC10507BD Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:10Z' + status: 200 OK + code: 200 + duration: 585.393375ms + - id: 60 + request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 + content_length: 1436 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d016896","reference":null},"location":{"value":"eastus2","reference":null},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE","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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"99107b403756766ad9f5f93e1d1c4691755e0a2a9b8f0ea0cbe87aebe5bb9e1c"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1436" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 913 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"99107b403756766ad9f5f93e1d1c4691755e0a2a9b8f0ea0cbe87aebe5bb9e1c"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:46:11.3637609Z","duration":"PT0.000528S","correlationId":"1b6fc6bdcb7c8ce5a97d34080af5aa90","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/operationStatuses/08584258501141134016?api-version=2021-04-01&t=639113535721137588&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=HiPlNu3UY_oo29ghNLRs1AM7o6KF53h8y6dWFm57ucNrqMKxnmstm97Tk-h7q6m6wATZjkQmbYxtivtG8TZh0rjgl_kOEx5bfpS6X2yCnG_tZHhlDM4pEYIoMb58OY9Ko2WkirygmGRoitdl4MifockYk1R2Rw5Acz3q157HOQCgZNjOUHrsk5iC1ovkj6V02dU-DKYHR-QG7PcSXpOmEZh1F2y-wz3vMhSutFJPH_IL_KOeqIFfbDKedEWzm26daBnbo3-6gvWWk82-yfeGJUI8q0YNB4W77DyEgvJvr2VZywfD_9PgkxGSfP-P-3IpUMB2PC3caZBGCM9i256yXQ&h=RUQ6at3uPHq_XkC_FTaa20JZlT7xMMVNUDD8K18m7ac Cache-Control: - no-cache Content-Length: - - "97" + - "913" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:39 GMT + - Thu, 09 Apr 2026 17:46:11 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000;includeSubDomains - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - c67ca237-6882-4d93-acf4-095aa74e973b - status: 401 Unauthorized - code: 401 - duration: 77.214399ms - - id: 53 + - cdbdfbf5-c5d1-4373-9011-d3d9e5e2a525 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174612Z:cdbdfbf5-c5d1-4373-9011-d3d9e5e2a525 + X-Msedge-Ref: + - 'Ref A: 5186B1AEA34549CC84E34E509B536C12 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:11Z' + status: 200 OK + code: 200 + duration: 1.107610458s + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3628,42 +30634,310 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lb61973-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.24.0; linux),azdev/0.0.0-dev.0 (Go go1.24.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 754d0bd12d84228d6f107e123406cd7d - url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/operationStatuses/08584258501141134016?api-version=2021-04-01&t=639113535721137588&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=HiPlNu3UY_oo29ghNLRs1AM7o6KF53h8y6dWFm57ucNrqMKxnmstm97Tk-h7q6m6wATZjkQmbYxtivtG8TZh0rjgl_kOEx5bfpS6X2yCnG_tZHhlDM4pEYIoMb58OY9Ko2WkirygmGRoitdl4MifockYk1R2Rw5Acz3q157HOQCgZNjOUHrsk5iC1ovkj6V02dU-DKYHR-QG7PcSXpOmEZh1F2y-wz3vMhSutFJPH_IL_KOeqIFfbDKedEWzm26daBnbo3-6gvWWk82-yfeGJUI8q0YNB4W77DyEgvJvr2VZywfD_9PgkxGSfP-P-3IpUMB2PC3caZBGCM9i256yXQ&h=RUQ6at3uPHq_XkC_FTaa20JZlT7xMMVNUDD8K18m7ac 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: 281 + content_length: 22 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "281" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 19:30:39 GMT + - Thu, 09 Apr 2026 17:46:41 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 8179356e-b996-4f68-b150-ac73dc45a439 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T174642Z:8179356e-b996-4f68-b150-ac73dc45a439 + X-Msedge-Ref: + - 'Ref A: FD2ABF34ADF945EE998D59B29E833C70 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:42Z' + status: 200 OK + code: 200 + duration: 99.448333ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1126 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"99107b403756766ad9f5f93e1d1c4691755e0a2a9b8f0ea0cbe87aebe5bb9e1c"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:46:12.8076734Z","duration":"PT1.4439125S","correlationId":"1b6fc6bdcb7c8ce5a97d34080af5aa90","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1126" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:41 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - dd480b51-d01e-4bdb-aa8e-65bbff29c46c + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174642Z:dd480b51-d01e-4bdb-aa8e-65bbff29c46c + X-Msedge-Ref: + - 'Ref A: E682D4C701DA4B2B9D588EF961C3F75A Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:42Z' + status: 200 OK + code: 200 + duration: 89.663917ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d016896%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896","name":"rg-azdtest-d016896","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:41 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a38d3a37-8f15-4aa8-bf0f-73cab99e13c2 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T174642Z:a38d3a37-8f15-4aa8-bf0f-73cab99e13c2 + X-Msedge-Ref: + - 'Ref A: 4E74E11D603E4CE3914F8B26EC1271A1 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:42Z' + status: 200 OK + code: 200 + duration: 147.118583ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 108 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "108" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:41 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - 9ffc4d68-b5f3-475c-8c8f-64a7c97a6911 + status: 401 Unauthorized + code: 401 + duration: 53.015542ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 1b6fc6bdcb7c8ce5a97d34080af5aa90 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs2/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 286 + uncompressed: false + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs2/f1c7504a57d142c38b0d8b4a1f30ac3b","attributes":{"enabled":true,"created":1775756754,"updated":1775756754,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "286" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:41 GMT Expires: - "-1" Pragma: @@ -3673,19 +30947,56770 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 98408f8e073040719f917ca966ecd37c + - 28b328ca63b147dcb080655661d8a15d X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + - 1.9.3070.2 X-Ms-Request-Id: - - 35797bf1-8e2c-42a6-8f49-1eba98a5234b + - 0d16e52b-cfa8-4cf4-8216-168814459967 + status: 200 OK + code: 200 + duration: 75.663667ms + - id: 66 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:43 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:51:43 GMT + Source-Age: + - "142" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 9c715b4a96d347f5f3d32f3f5937619a3dbd7e02 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756803.348630,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.580458ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:46:43 GMT + Expires: + - Thu, 09 Apr 2026 17:46:43 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: 373.668167ms + - id: 68 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:43 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:51:43 GMT + Source-Age: + - "141" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 7c5ce2ac21a389a40ff82cfe4df771aa4659c8b8 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756804.921862,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 22.892958ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:46:43 GMT + Expires: + - Thu, 09 Apr 2026 17:46:43 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 17.448ms + - id: 70 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:43 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:51:43 GMT + Source-Age: + - "141" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - c9d2164759409a4dec560b58182db08be70c4132 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756804.983839,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 12.814208ms + - id: 71 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:44 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:51:44 GMT + Source-Age: + - "141" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 0a80f210a71a2b28ded0a09cf44f9f867966a2ed + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756804.005090,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 12.601708ms + - id: 72 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:44 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:51:44 GMT + Source-Age: + - "143" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - d6075162d1f483824a96fd8e884ac2b63e7d2153 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756804.083987,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 14.838167ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:46:44 GMT + Expires: + - Thu, 09 Apr 2026 17:46:44 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: 89.009458ms + - id: 74 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:44 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:51:44 GMT + Source-Age: + - "142" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - f01491aa9b9e7a9d9d3c5949b171d32d5e36a19b + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756804.206252,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 22.076917ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:46:44 GMT + Expires: + - Thu, 09 Apr 2026 17:46:44 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 33.503959ms + - id: 76 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:44 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:51:44 GMT + Source-Age: + - "142" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 2acd0854ebee4975c6a4827e50b9e609f5f22c71 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756804.282597,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.373583ms + - id: 77 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:46:44 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:51:44 GMT + Source-Age: + - "142" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - e4ea539b162fd42f6eaac57adfc210850a23331f + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756804.302923,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 14.552458ms + - id: 78 + 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-armkeyvault/v1.5.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c323f22772524d9ee37b39412efcf764 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 499 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev/providers/Microsoft.KeyVault/vaults/kv-kktuwqpce2enu","name":"kv-kktuwqpce2enu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdtest-d016896-rg/providers/Microsoft.KeyVault/vaults/azdtest-d016896-kva","name":"azdtest-d016896-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "499" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:43 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c323f22772524d9ee37b39412efcf764 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 16f419df-8300-498f-be21-f22cb3fd4b8e + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174644Z:16f419df-8300-498f-be21-f22cb3fd4b8e + X-Msedge-Ref: + - 'Ref A: 381E0897435F46A5931EDD370C16F260 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:44Z' + status: 200 OK + code: 200 + duration: 173.2845ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c323f22772524d9ee37b39412efcf764 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 108 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "108" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:43 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - f9d3ed76-3aa1-44c1-944e-b735e8487531 + status: 401 Unauthorized + code: 401 + duration: 46.997584ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c323f22772524d9ee37b39412efcf764 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 456 + uncompressed: false + body: '{"value":[{"id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs2","attributes":{"enabled":true,"created":1775756754,"updated":1775756754,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "456" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:43 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - 28b328ca63b147dcb080655661d8a15d + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - 1d3ccebd-e69e-4926-9597-7556ca09c5b3 + status: 200 OK + code: 200 + duration: 99.317041ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 108 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "108" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:45 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - 797fdd9f-4038-451c-b9ac-afb2b66559ef + status: 401 Unauthorized + code: 401 + duration: 46.23675ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs/47ffe09a0b8243fa83c9fd6faa6258d8","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:46 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - 28b328ca63b147dcb080655661d8a15d + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - 62a35dd7-eb05-448a-a2cd-d27f0102253c + status: 200 OK + code: 200 + duration: 107.63475ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 47870 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "47870" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3e4a7b24-e651-4452-9f42-9475ba428319 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174648Z:3e4a7b24-e651-4452-9f42-9475ba428319 + X-Msedge-Ref: + - 'Ref A: 43ED8087138345FAA2AE0AFD257ED741 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:47Z' + status: 200 OK + code: 200 + duration: 1.056480917s + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 108 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "108" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - 949b4ff0-f5a7-4f49-b062-b719b56409f6 + status: 401 Unauthorized + code: 401 + duration: 51.384708ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs/47ffe09a0b8243fa83c9fd6faa6258d8","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - 28b328ca63b147dcb080655661d8a15d + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - bbb387d5-550d-4dea-8d91-c271c1a98cfb + status: 200 OK + code: 200 + duration: 82.804458ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 962097 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","location":"eastus2","name":"azdtest-d016896-1775756660","properties":{"correlationId":"1b6fc6bdcb7c8ce5a97d34080af5aa90","dependencies":[],"duration":"PT1.4439125S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"15217396239890875345","timestamp":"2026-04-09T17:46:12.8076734Z"},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"99107b403756766ad9f5f93e1d1c4691755e0a2a9b8f0ea0cbe87aebe5bb9e1c"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "962097" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:51 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 8dda6c2c-7006-41a0-908e-6befc8fc1b1c + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174652Z:8dda6c2c-7006-41a0-908e-6befc8fc1b1c + X-Msedge-Ref: + - 'Ref A: 18EC19BDBBD74AC7A04EA1C5CECB324B Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:48Z' + status: 200 OK + code: 200 + duration: 4.164999666s + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 858118 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "858118" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:54 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d5d76a25-e143-4fa3-923b-9e35136ebadc + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174655Z:d5d76a25-e143-4fa3-923b-9e35136ebadc + X-Msedge-Ref: + - 'Ref A: F5CC78D85FF94FC8AE2D96E352757E58 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:52Z' + status: 200 OK + code: 200 + duration: 2.541559958s + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 515084 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "515084" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:55 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 065472fa-f096-41ad-b845-1d2c326875a4 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T174656Z:065472fa-f096-41ad-b845-1d2c326875a4 + X-Msedge-Ref: + - 'Ref A: 99D80C3DA7A9467FA9558F594B308573 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:55Z' + status: 200 OK + code: 200 + duration: 1.272135458s + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:56 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - f48dbbc1-feac-4626-b4b7-5459f6e2ee02 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174657Z:f48dbbc1-feac-4626-b4b7-5459f6e2ee02 + X-Msedge-Ref: + - 'Ref A: 4A13239EA9A64019A831300A6E54146D Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:56Z' + status: 200 OK + code: 200 + duration: 806.950041ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:57 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - f1152a7c-f889-4057-857e-45055f782d98 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T174658Z:f1152a7c-f889-4057-857e-45055f782d98 + X-Msedge-Ref: + - 'Ref A: BE0817CDB6C34382838600CFAB4EE3EE Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:57Z' + status: 200 OK + code: 200 + duration: 799.412708ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1012 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"$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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1012" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1179 + uncompressed: false + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"15217396239890875345\"}}}","templateHash":"15217396239890875345"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1179" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:57 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" + X-Ms-Request-Id: + - f80d423b-70fa-4589-9502-f956eaf02c89 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174658Z:f80d423b-70fa-4589-9502-f956eaf02c89 + X-Msedge-Ref: + - 'Ref A: 5168E95B9CA742DCAD1B8CC84ED62927 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:46:58Z' + status: 200 OK + code: 200 + duration: 105.900625ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1432 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d016896","reference":null},"location":{"value":"eastus2","reference":null},"secretParam":{"value":"THIS IS THE SECRET VALUE","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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1432" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1025 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:47:00.3177358Z","duration":"PT0S","correlationId":"709685bca9e0dd4223e4f3aa01a9aba8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1025" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:46:59 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 98c6a365-78b0-42b8-a17a-af78a6fba964 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174700Z:98c6a365-78b0-42b8-a17a-af78a6fba964 + X-Msedge-Ref: + - 'Ref A: 74F95907EC824D5780519440C6139B3C Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:47:00Z' + status: 200 OK + code: 200 + duration: 553.95475ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1432 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d016896","reference":null},"location":{"value":"eastus2","reference":null},"secretParam":{"value":"THIS IS THE SECRET VALUE","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":"15217396239890875345"}},"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"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1432" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 914 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:47:00.8970723Z","duration":"PT0.0007494S","correlationId":"709685bca9e0dd4223e4f3aa01a9aba8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/operationStatuses/08584258500645754747?api-version=2021-04-01&t=639113536215689568&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=B-w-XTNbzYq04zd3AJFZRQP-VF0maXb4AF0wP5JLqKpXd181ywr0bDmN1mreWTiYwnmnQlyPDrxNbCQZtKC3Fli63sXPxfY6TRknqq7DHyqinjg9WobtCVv5vSrwPpE085Oc3luQVNutpzw9nNBQsTsLJA5LFhbHBTBPruMReOt9BNaDWOeigoY5AZj15aLIwctgWMSgz-GfRVbI4dQWb1lUgWz4V19J16yeqaYTjNlXEJ7bt2wdg0KwQZKaECT1eIgBI7s5qEtO155MkmLwhfPGH2grJVNn8E7bxeTACpBFhcx93stb9auyhPKrKurJHB9KPbUA5sUY9Q5lYuyoyA&h=oqmzofIZ5hfwzu5AR2YTR-mfvw5Nyz3hK8ZqbLpeOIo + Cache-Control: + - no-cache + Content-Length: + - "914" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:47:00 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - b2514310-dda5-43e9-a756-d1782a537008 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174701Z:b2514310-dda5-43e9-a756-d1782a537008 + X-Msedge-Ref: + - 'Ref A: 857E4E5E60E846ADA593DEC12728172C Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:47:00Z' + status: 200 OK + code: 200 + duration: 1.005650541s + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660/operationStatuses/08584258500645754747?api-version=2021-04-01&t=639113536215689568&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=B-w-XTNbzYq04zd3AJFZRQP-VF0maXb4AF0wP5JLqKpXd181ywr0bDmN1mreWTiYwnmnQlyPDrxNbCQZtKC3Fli63sXPxfY6TRknqq7DHyqinjg9WobtCVv5vSrwPpE085Oc3luQVNutpzw9nNBQsTsLJA5LFhbHBTBPruMReOt9BNaDWOeigoY5AZj15aLIwctgWMSgz-GfRVbI4dQWb1lUgWz4V19J16yeqaYTjNlXEJ7bt2wdg0KwQZKaECT1eIgBI7s5qEtO155MkmLwhfPGH2grJVNn8E7bxeTACpBFhcx93stb9auyhPKrKurJHB9KPbUA5sUY9Q5lYuyoyA&h=oqmzofIZ5hfwzu5AR2YTR-mfvw5Nyz3hK8ZqbLpeOIo + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:47:31 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - fe27d46c-6f11-44da-94b2-14fb88d0f417 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174731Z:fe27d46c-6f11-44da-94b2-14fb88d0f417 + X-Msedge-Ref: + - 'Ref A: D80312E266684D08A87EA2182B2671CC Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:47:31Z' + status: 200 OK + code: 200 + duration: 150.3585ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1122 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d016896-1775756660","name":"azdtest-d016896-1775756660","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896","azd-layer-name":"","azd-provision-param-hash":"532431293f9c829a7811ccc2855124510db79898ef66c543eaf654f5d772a424"},"properties":{"templateHash":"15217396239890875345","parameters":{"environmentName":{"type":"String","value":"azdtest-d016896"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:47:02.6510162Z","duration":"PT1.7539439S","correlationId":"709685bca9e0dd4223e4f3aa01a9aba8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1122" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:47:31 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3588b7ee-98c1-4968-9624-9b5272608441 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T174732Z:3588b7ee-98c1-4968-9624-9b5272608441 + X-Msedge-Ref: + - 'Ref A: 2D9613E2D99A4377B866176F02E45984 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:47:32Z' + status: 200 OK + code: 200 + duration: 116.365542ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d016896%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d016896","name":"rg-azdtest-d016896","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d016896"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:47:31 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 226ca32e-f434-40df-9152-2409328f668a + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T174732Z:226ca32e-f434-40df-9152-2409328f668a + X-Msedge-Ref: + - 'Ref A: 1D7CE6ADE39649BE9475C458E0ECC2E9 Ref B: BN1AA2051013017 Ref C: 2026-04-09T17:47:32Z' + status: 200 OK + code: 200 + duration: 165.289625ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 108 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer, PoP, or MTLS_POP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "108" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:47:31 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - 0503e19d-e12a-4aed-a7a9-b10e62fa5f40 + status: 401 Unauthorized + code: 401 + duration: 47.943167ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-d016896-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets/v1.4.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 709685bca9e0dd4223e4f3aa01a9aba8 + url: https://azdtest-d016896-kva.vault.azure.net:443/secrets/azdtest-d016896-kvs/?api-version=7.6 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-d016896-kva.vault.azure.net/secrets/azdtest-d016896-kvs/47ffe09a0b8243fa83c9fd6faa6258d8","attributes":{"enabled":true,"created":1775756702,"updated":1775756702,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:47:31 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=75.115.253.206;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - 28b328ca63b147dcb080655661d8a15d + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.3070.2 + X-Ms-Request-Id: + - 825d10e5-aa7d-428a-9361-d4c061b9f735 + status: 200 OK + code: 200 + duration: 77.864708ms + - id: 99 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:32 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:52:32 GMT + Source-Age: + - "191" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "4" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - f3654d81606a35f8dc60e662d659e06a18cfa1f8 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.818454,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.655292ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:47:32 GMT + Expires: + - Thu, 09 Apr 2026 17:47: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: 61.510792ms + - id: 101 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:32 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:52:32 GMT + Source-Age: + - "190" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "4" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 4ce1fe4387968373c9f4306d246d27d6add7e599 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.912892,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 20.046959ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:47:32 GMT + Expires: + - Thu, 09 Apr 2026 17:47:32 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 + Server: + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 51.3945ms + - id: 103 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:32 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:52:32 GMT + Source-Age: + - "190" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "4" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 7daa58d66011b506fe059f11dd715ee1755f1042 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.996434,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 14.163959ms + - id: 104 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:33 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:52:33 GMT + Source-Age: + - "190" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "4" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 9789ce9484afaaa6fd64caccdc5106e8ffa04253 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.018574,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.519375ms + - id: 105 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:33 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:52:33 GMT + Source-Age: + - "192" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "5" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 6d6fdf965d1d1b4f68cca09f864035342829f1bd + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.097000,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 21.573ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:47:33 GMT + Expires: + - Thu, 09 Apr 2026 17:47:33 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: 17.248042ms + - id: 107 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:33 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:52:33 GMT + Source-Age: + - "191" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "5" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - a2aca76542db8fe73eb4997634b6a88d0cbca4e5 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.143827,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.432125ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:47:33 GMT + Expires: + - Thu, 09 Apr 2026 17:47:33 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 16.407542ms + - id: 109 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:33 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:52:33 GMT + Source-Age: + - "191" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "5" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - b26cdf8dd00ff0a71cbf78ee3e7ff0c3991d97f8 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.190668,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 13.543167ms + - id: 110 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:33 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:52:33 GMT + Source-Age: + - "191" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "5" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 441daf120490e5443014370a3de283a5e790b721 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756853.211876,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 14.953458ms + - id: 111 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:34 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:52:34 GMT + Source-Age: + - "193" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "6" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 1bf9689276ec23ef8e1099a5636f3c43863d435c + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756854.337963,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 26.490792ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:47:34 GMT + Expires: + - Thu, 09 Apr 2026 17:47: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: + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 20.602916ms + - id: 113 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:34 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:52:34 GMT + Source-Age: + - "192" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "6" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - dba6d8138da3fd00b58d368d042a4a8eb9fc94f0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756854.391747,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.706542ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:47:34 GMT + Expires: + - Thu, 09 Apr 2026 17:47:34 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 20.959458ms + - id: 115 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:34 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:52:34 GMT + Source-Age: + - "192" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "6" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 4d2cd05683df1e9e69464f2e6a25266a6bc75243 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756854.450801,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 16.626834ms + - id: 116 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:34 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:52:34 GMT + Source-Age: + - "192" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "6" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 9c17c9ef83b8583da0318d616aafd74fc5f42049 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756855.558806,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.209375ms + - id: 117 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:44 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:52:44 GMT + Source-Age: + - "203" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "7" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 0047e7cfc7d2d7994a5dab17770dc7503cd8be68 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756865.513526,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 30.977583ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:47:44 GMT + Expires: + - Thu, 09 Apr 2026 17:47:44 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: 104.134708ms + - id: 119 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:44 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:52:44 GMT + Source-Age: + - "202" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "7" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - bb5b5da7cd5a1f6fe734621e520575f090be7712 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756865.670775,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 21.599583ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:47:44 GMT + Expires: + - Thu, 09 Apr 2026 17:47:44 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 79.774333ms + - id: 121 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:44 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:52:44 GMT + Source-Age: + - "202" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "7" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 83708aa36b6d527b243ea8cc5cbbb91430473bc9 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756865.796444,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.85875ms + - id: 122 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:47:44 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:52:44 GMT + Source-Age: + - "202" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "7" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 0cab00e0472ce117781fb29594f7d9202872fd5f + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760031-MIA + X-Timer: + - S1775756865.827474,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 74.791474ms + duration: 18.441833ms --- -env_name: azdtest-lb61973 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1738006065" +env_name: azdtest-d016896 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775756660" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.yaml index e530e3f3c10..6ed451b6125 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.yaml @@ -9,23 +9,19 @@ 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 User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -33,43 +29,3264 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 45193 + content_length: 138770 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Brazil","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Canary (US)","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "45193" + - "138770" + 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: - - Tue, 15 Apr 2025 17:41:23 GMT + - Thu, 09 Apr 2026 17:21:27 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:26:27 GMT + Source-Age: + - "31" 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: - - 7165db448d8aab8e2e225b303977b4e0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 4e155ec5-231e-41b2-b56a-d280a1a52cdc - X-Ms-Routing-Request-Id: - - WESTUS:20250415T174123Z:4e155ec5-231e-41b2-b56a-d280a1a52cdc - X-Msedge-Ref: - - 'Ref A: 8087DC2DE33B407ABBFB592EEAB88C28 Ref B: MWH011020807052 Ref C: 2025-04-15T17:41:19Z' + X-Fastly-Request-Id: + - 4d412a8434665bf0dc7c5b982f941986e6493820 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755287.367869,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 3.8720388s + duration: 62.224458ms - id: 1 request: proto: HTTP/1.1 @@ -78,67 +3295,55 @@ 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.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?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/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1890757 + content_length: 0 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "1890757" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Tue, 15 Apr 2025 17:41:31 GMT + - Thu, 09 Apr 2026 17:21:27 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:21:27 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" - X-Ms-Request-Id: - - 1b2a9a32-e897-407f-adf7-d8b3ce7850fe - X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174131Z:1b2a9a32-e897-407f-adf7-d8b3ce7850fe - X-Msedge-Ref: - - 'Ref A: 2B41E961F70D49ABAF85992B62076495 Ref B: MWH011020807052 Ref C: 2025-04-15T17:41:23Z' - status: 200 OK - code: 200 - duration: 8.1108757s + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 164.07ms - id: 2 request: proto: HTTP/1.1 @@ -147,7 +3352,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -157,11 +3362,11 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&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 @@ -169,43 +3374,4338 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1154756 + content_length: 195006 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + 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" + } + } + } + ] + }, + { + "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: - - "1154756" + - "195006" + 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: - - Tue, 15 Apr 2025 17:41:36 GMT + - Thu, 09 Apr 2026 17:21:27 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:26:27 GMT + Source-Age: + - "210" 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: - - 7165db448d8aab8e2e225b303977b4e0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 08f05c63-a5ee-46e7-b15c-5dc97d3648be - X-Ms-Routing-Request-Id: - - WESTUS:20250415T174136Z:08f05c63-a5ee-46e7-b15c-5dc97d3648be - X-Msedge-Ref: - - 'Ref A: 5DA5344D9FE741BBAB0C8F89E52E975A Ref B: MWH011020807052 Ref C: 2025-04-15T17:41:31Z' + X-Fastly-Request-Id: + - 44fd87b20d1105efed002c4977ed0b377e3bc45b + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755288.567792,VS0,VE4 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 4.955442s + duration: 20.478709ms - id: 3 request: proto: HTTP/1.1 @@ -214,7 +7714,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -225,204 +7725,1504 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 0 uncompressed: false - body: '{"value":[]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "97962" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Tue, 15 Apr 2025 17:41:38 GMT + - Thu, 09 Apr 2026 17:21:27 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:21:27 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 03d12bde-90fd-4938-bef1-2dc1aeac7a23 - X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174138Z:03d12bde-90fd-4938-bef1-2dc1aeac7a23 - X-Msedge-Ref: - - 'Ref A: 033B017994174A989D31649FB0634C5E Ref B: MWH011020807052 Ref C: 2025-04-15T17:41:36Z' - status: 200 OK - code: 200 - duration: 1.5662735s + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 19.058792ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4424 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-w0989c5","reference":null},"intTagValue":{"value":678,"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.35.1.8038","templateHash":"5885594674773916191"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]"}},"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":"2022-09-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.35.1.8038","templateHash":"12834001296681164846"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4424" - Content-Type: - - application/json + Referer: + - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873/validate?api-version=2021-04-01 - method: POST + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1890 + content_length: 41722 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"properties":{"templateHash":"5885594674773916191","parameters":{"environmentName":{"type":"String","value":"azdtest-w0989c5"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:38Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:41:38.8665692Z","duration":"PT0S","correlationId":"7165db448d8aab8e2e225b303977b4e0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0989c5"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}]}}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "1890" + - "41722" + 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: - - Tue, 15 Apr 2025 17:41:40 GMT + - Thu, 09 Apr 2026 17:21:27 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:26:27 GMT + Source-Age: + - "31" 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: - - 7165db448d8aab8e2e225b303977b4e0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - 7d898f77-352f-4d6f-9979-e0af884c4963 - X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174140Z:7d898f77-352f-4d6f-9979-e0af884c4963 - X-Msedge-Ref: - - 'Ref A: 2623CD7D1C1F457BB825D8526DAD299D Ref B: MWH011020807052 Ref C: 2025-04-15T17:41:38Z' + X-Fastly-Request-Id: + - 37d9317aa5b1b908f0f29dec175a63add78b50ae + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755288.624641,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 2.0452596s + duration: 14.460709ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4424 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-w0989c5","reference":null},"intTagValue":{"value":678,"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.35.1.8038","templateHash":"5885594674773916191"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]"}},"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":"2022-09-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.35.1.8038","templateHash":"12834001296681164846"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4424" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 - method: PUT + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1477 + content_length: 16828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"properties":{"templateHash":"5885594674773916191","parameters":{"environmentName":{"type":"String","value":"azdtest-w0989c5"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-15T17:41:40.8509556Z","duration":"PT0.0006721S","correlationId":"7165db448d8aab8e2e225b303977b4e0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0989c5"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873/operationStatuses/08584568679846173576?api-version=2021-04-01&t=638803357031478449&c=MIIHpTCCBo2gAwIBAgITfwTYu0qoRwcN0bP8jwAEBNi7SjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTIzMjA0ODUxWhcNMjUwNzIyMjA0ODUxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJiyUikcpMswfhvdsI_rXYHu5usdpZW7yAqWPwx7nyvDBbA6tYMOwIWDF3lmy48lA46kFg2__zl_gVcj_Jw_2ue8USufQFsjmlCYmhbryemgmCuZucLrVs0nOW_5HVAX7QY9eBRWotqXIDJPTRyoGqWrXm2qO_sMjVacTB19-WMO5gHXKvOrm3HRspddB5sJUi15aHoSTlGgepJ8Bc6vMEFWUSNkkRqGt-EtMDQGAf2PFA2rkeizLvEPyGwqA04f56eXcnvVc-9t6jGFggfFusEW3_EaE1CqF_Aemzi9kaAhLfj5fOyZHybExiqyzL3WDGLAe-mC9uhOggcp5HjtKECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTFiuatBch4getEuR5ddJpfuPsJ8DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIxmxJ5xNUiG8PRXsUSme6IbA37JinZso0lwEjfgtHmK1DZhhGugl-cdjEw10JLCVwaiKd-q2yljbccx_MpSj2rx5yGUNb32Cv2p40-HWzxtYMw0j9JGcrJWoP_apkjIELce110mKIOL4dJ3r8N5cXuhEatDvAPjNYjdG9YgGTE1s1CLy9MvJsLRVQnWtxDWlWsj_XgzlBhvgxwXILR7A48GZLe9ENWEJwEl_AmMGT_o5kKmBfcKl6mjYWjCchXL5bHKE5dnl9X3W2eQTdqqGqh2z2KAUwyCu2xOV5xh6Zjg6SDEuPHvcBqAHqMgqi3E38hUBBXw4AXVsmQhz5FyOg8&s=m30Z-XxJT-BUJbmeWUx-ycXHxzGkcUhUyo4OSpTWCa86y2uHHqyTgN9oOwmzE71i9CqoHGGaSuCJVnobbYPCOHpiwJm7XT-hUPs3NEhUWOWWMO1DCNuWZWx06W-wWhsZgDyJNVHOIcqzYAWLVCtCejxZV0ZA3cf7tRjeiIn3jKyWmhN71VWM70AtntDdd0axfbQfBdDThMM365pC9GlZwcb85ng-_0OMM9yhRtMW7PTIoBRN61_1tysJKk-JO5BH4Set_eyPV8v9LG6e-wXdVTPxU7fgqewQ_3FYJUhbu1oAojrNiCpVDBv9T8nWT6FiR3N3gYj3PWLlf8dYyEl0xA&h=9o3F3dtZKIQMKaSepefS9P0bmfXTSHzZjI2uUF5aJvM + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "1477" + - "16828" + 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: - - Tue, 15 Apr 2025 17:41:42 GMT + - Thu, 09 Apr 2026 17:21:27 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:26:27 GMT + Source-Age: + - "31" 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: - - 7165db448d8aab8e2e225b303977b4e0 - X-Ms-Deployment-Engine-Version: - - 1.309.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11998" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "798" - X-Ms-Request-Id: - - 08e78299-f1b8-49b2-9be6-70f09ef494e7 - X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174143Z:08e78299-f1b8-49b2-9be6-70f09ef494e7 - X-Msedge-Ref: - - 'Ref A: 6559737D399A4F95A14A950965BFEAF4 Ref B: MWH011020807052 Ref C: 2025-04-15T17:41:40Z' - status: 201 Created - code: 201 - duration: 2.667419s + X-Fastly-Request-Id: + - cedcae23bd28edbc3e4f52a9046493d614dd8227 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755288.645613,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 13.814791ms - id: 6 request: proto: HTTP/1.1 @@ -437,15 +9237,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873/operationStatuses/08584568679846173576?api-version=2021-04-01&t=638803357031478449&c=MIIHpTCCBo2gAwIBAgITfwTYu0qoRwcN0bP8jwAEBNi7SjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTIzMjA0ODUxWhcNMjUwNzIyMjA0ODUxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJiyUikcpMswfhvdsI_rXYHu5usdpZW7yAqWPwx7nyvDBbA6tYMOwIWDF3lmy48lA46kFg2__zl_gVcj_Jw_2ue8USufQFsjmlCYmhbryemgmCuZucLrVs0nOW_5HVAX7QY9eBRWotqXIDJPTRyoGqWrXm2qO_sMjVacTB19-WMO5gHXKvOrm3HRspddB5sJUi15aHoSTlGgepJ8Bc6vMEFWUSNkkRqGt-EtMDQGAf2PFA2rkeizLvEPyGwqA04f56eXcnvVc-9t6jGFggfFusEW3_EaE1CqF_Aemzi9kaAhLfj5fOyZHybExiqyzL3WDGLAe-mC9uhOggcp5HjtKECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTFiuatBch4getEuR5ddJpfuPsJ8DAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIxmxJ5xNUiG8PRXsUSme6IbA37JinZso0lwEjfgtHmK1DZhhGugl-cdjEw10JLCVwaiKd-q2yljbccx_MpSj2rx5yGUNb32Cv2p40-HWzxtYMw0j9JGcrJWoP_apkjIELce110mKIOL4dJ3r8N5cXuhEatDvAPjNYjdG9YgGTE1s1CLy9MvJsLRVQnWtxDWlWsj_XgzlBhvgxwXILR7A48GZLe9ENWEJwEl_AmMGT_o5kKmBfcKl6mjYWjCchXL5bHKE5dnl9X3W2eQTdqqGqh2z2KAUwyCu2xOV5xh6Zjg6SDEuPHvcBqAHqMgqi3E38hUBBXw4AXVsmQhz5FyOg8&s=m30Z-XxJT-BUJbmeWUx-ycXHxzGkcUhUyo4OSpTWCa86y2uHHqyTgN9oOwmzE71i9CqoHGGaSuCJVnobbYPCOHpiwJm7XT-hUPs3NEhUWOWWMO1DCNuWZWx06W-wWhsZgDyJNVHOIcqzYAWLVCtCejxZV0ZA3cf7tRjeiIn3jKyWmhN71VWM70AtntDdd0axfbQfBdDThMM365pC9GlZwcb85ng-_0OMM9yhRtMW7PTIoBRN61_1tysJKk-JO5BH4Set_eyPV8v9LG6e-wXdVTPxU7fgqewQ_3FYJUhbu1oAojrNiCpVDBv9T8nWT6FiR3N3gYj3PWLlf8dYyEl0xA&h=9o3F3dtZKIQMKaSepefS9P0bmfXTSHzZjI2uUF5aJvM + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -453,18 +9255,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 47870 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:43 GMT + - Thu, 09 Apr 2026 17:21:30 GMT Expires: - "-1" Pragma: @@ -476,20 +9278,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b4faae75-515a-4c59-bbf4-874118add2b5 + - c039c1d7-99a9-4730-9fa7-65216b9eff2e X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174244Z:b4faae75-515a-4c59-bbf4-874118add2b5 + - EASTUS:20260409T172131Z:c039c1d7-99a9-4730-9fa7-65216b9eff2e X-Msedge-Ref: - - 'Ref A: 1CB109D6869442A3B063C5E7974D2A2B Ref B: MWH011020807052 Ref C: 2025-04-15T17:42:43Z' + - 'Ref A: 82D9B072C69F44ACA714C5B566686D1D Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:30Z' status: 200 OK code: 200 - duration: 395.4829ms + duration: 1.563424667s - id: 7 request: proto: HTTP/1.1 @@ -504,15 +9306,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -520,18 +9324,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 960970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"properties":{"templateHash":"5885594674773916191","parameters":{"environmentName":{"type":"String","value":"azdtest-w0989c5"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:18.3024009Z","duration":"PT37.4514453S","correlationId":"7165db448d8aab8e2e225b303977b4e0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0989c5"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stau4pbwuu77ney"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2405" + - "960970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:43 GMT + - Thu, 09 Apr 2026 17:21:36 GMT Expires: - "-1" Pragma: @@ -543,20 +9347,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f3a53013-2705-4117-acb1-4ac75a6f1795 + - c5a0da4c-223a-44e7-a77b-b499cc40e1fd X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174244Z:f3a53013-2705-4117-acb1-4ac75a6f1795 + - EASTUS2:20260409T172136Z:c5a0da4c-223a-44e7-a77b-b499cc40e1fd X-Msedge-Ref: - - 'Ref A: ECCC2EED863E41BB82D463A6E3CA9542 Ref B: MWH011020807052 Ref C: 2025-04-15T17:42:44Z' + - 'Ref A: 4D1AB3AE0AC2404BBDD1CDA57994DC5E Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:33Z' status: 200 OK code: 200 - duration: 196.0408ms + duration: 3.678659709s - id: 8 request: proto: HTTP/1.1 @@ -571,17 +9375,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -589,18 +9391,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1909761 + content_length: 845051 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","location":"eastus2","name":"azdtest-w0989c5-1744738873","properties":{"correlationId":"7165db448d8aab8e2e225b303977b4e0","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceName":"rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT37.4514453S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stau4pbwuu77ney"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"environmentName":{"type":"String","value":"azdtest-w0989c5"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"5885594674773916191","timestamp":"2025-04-15T17:42:18.3024009Z"},"tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1909761" + - "845051" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:51 GMT + - Thu, 09 Apr 2026 17:21:39 GMT Expires: - "-1" Pragma: @@ -612,20 +9414,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - 177f8954-fdbb-4982-82a4-178ff747b9e5 + - 9e8c2081-a374-4895-a970-93615eaa6bc7 X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174251Z:177f8954-fdbb-4982-82a4-178ff747b9e5 + - EASTUS2:20260409T172139Z:9e8c2081-a374-4895-a970-93615eaa6bc7 X-Msedge-Ref: - - 'Ref A: 392509EDFD704534AB0A9921F3E664BC Ref B: MWH011020807052 Ref C: 2025-04-15T17:42:44Z' + - 'Ref A: E931F8224F5340D3B98623BC0AF92552 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:36Z' status: 200 OK code: 200 - duration: 7.032711s + duration: 2.374229208s - id: 9 request: proto: HTTP/1.1 @@ -645,10 +9447,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -656,18 +9458,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1154756 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1154756" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:55 GMT + - Thu, 09 Apr 2026 17:21:40 GMT Expires: - "-1" Pragma: @@ -679,20 +9481,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 93586a3a-f41b-484a-bd1c-b3fe8fb40a89 + - 04999d8b-bc6a-4885-91e1-faea923aab0a X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174255Z:93586a3a-f41b-484a-bd1c-b3fe8fb40a89 + - EASTUS:20260409T172140Z:04999d8b-bc6a-4885-91e1-faea923aab0a X-Msedge-Ref: - - 'Ref A: 00F9A6D19B7B4BC184799DE5B7FE4D82 Ref B: MWH011020807052 Ref C: 2025-04-15T17:42:51Z' + - 'Ref A: 2CC69E5E666145E8BBEBBD7D7A6860D1 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:39Z' status: 200 OK code: 200 - duration: 4.0177858s + duration: 1.4746955s - id: 10 request: proto: HTTP/1.1 @@ -712,10 +9514,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -723,18 +9525,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "97962" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:57 GMT + - Thu, 09 Apr 2026 17:21:42 GMT Expires: - "-1" Pragma: @@ -746,20 +9548,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2533a077-11ac-4990-b96b-6ea62ebac8a8 + - 3b676537-d9b7-4554-9dbc-e8f4851bf982 X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174257Z:2533a077-11ac-4990-b96b-6ea62ebac8a8 + - EASTUS:20260409T172142Z:3b676537-d9b7-4554-9dbc-e8f4851bf982 X-Msedge-Ref: - - 'Ref A: 8FEA1E3DCBFE411FA1125B92AD2DC955 Ref B: MWH011020807052 Ref C: 2025-04-15T17:42:55Z' + - 'Ref A: 600AC5A749D64188B43069B146CFE350 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:41Z' status: 200 OK code: 200 - duration: 1.6988944s + duration: 1.060408166s - id: 11 request: proto: HTTP/1.1 @@ -774,17 +9576,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -792,18 +9592,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"properties":{"templateHash":"5885594674773916191","parameters":{"environmentName":{"type":"String","value":"azdtest-w0989c5"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:18.3024009Z","duration":"PT37.4514453S","correlationId":"7165db448d8aab8e2e225b303977b4e0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0989c5"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stau4pbwuu77ney"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2405" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:57 GMT + - Thu, 09 Apr 2026 17:21:42 GMT Expires: - "-1" Pragma: @@ -815,32 +9615,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7165db448d8aab8e2e225b303977b4e0 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 99e96e04-bde7-439d-9183-450c07d1a4ac + - a91058ab-ea62-470c-878a-9ad49530d496 X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174257Z:99e96e04-bde7-439d-9183-450c07d1a4ac + - EASTUS2:20260409T172142Z:a91058ab-ea62-470c-878a-9ad49530d496 X-Msedge-Ref: - - 'Ref A: 6719AD8C3C724DED8E4EAD122FEDABC3 Ref B: MWH011020807052 Ref C: 2025-04-15T17:42:57Z' + - 'Ref A: D6CE1C19F9354606BDEB97F50829FFB1 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:42Z' status: 200 OK code: 200 - duration: 199.5854ms + duration: 557.91275ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4444 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d3a7764","reference":null},"intTagValue":{"value":678,"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":"11821345585697040437"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]"}},"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"}}' form: {} headers: Accept: @@ -849,30 +9649,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4444" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 - method: GET + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1909762 + content_length: 1911 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","location":"eastus2","name":"azdtest-w0989c5-1744738873","properties":{"correlationId":"7165db448d8aab8e2e225b303977b4e0","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceName":"rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT37.4514453S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stau4pbwuu77ney"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"environmentName":{"type":"String","value":"azdtest-w0989c5"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"5885594674773916191","timestamp":"2025-04-15T17:42:18.3024009Z"},"tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"properties":{"templateHash":"11821345585697040437","parameters":{"environmentName":{"type":"String","value":"azdtest-d3a7764"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:43Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:21:44.0188064Z","duration":"PT0S","correlationId":"7c1127105992541c704504eff38fbc74","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d3a7764"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1909762" + - "1911" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:08 GMT + - Thu, 09 Apr 2026 17:21:44 GMT Expires: - "-1" Pragma: @@ -884,62 +9688,70 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 7c1127105992541c704504eff38fbc74 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - e6464880-4771-4a35-acd2-859b6a0730d4 + - 4507f62b-a031-4148-bae3-c3a239babbbf X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174309Z:e6464880-4771-4a35-acd2-859b6a0730d4 + - EASTUS2:20260409T172144Z:4507f62b-a031-4148-bae3-c3a239babbbf X-Msedge-Ref: - - 'Ref A: F4BC20CBD4F2450982AAB62C65F5479E Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:02Z' + - 'Ref A: 02A3621041674E078ACBC4B2A805C912 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:43Z' status: 200 OK code: 200 - duration: 6.9116469s + duration: 966.092417ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4444 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d3a7764","reference":null},"intTagValue":{"value":678,"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":"11821345585697040437"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]"}},"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4444" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&api-version=2021-04-01 - method: GET + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1154756 + content_length: 1498 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"properties":{"templateHash":"11821345585697040437","parameters":{"environmentName":{"type":"String","value":"azdtest-d3a7764"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:21:44.9526281Z","duration":"PT0.0002525S","correlationId":"7c1127105992541c704504eff38fbc74","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d3a7764"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285/operationStatuses/08584258515805168258?api-version=2021-04-01&t=639113521052651235&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=Et_lbxneZsfrgP6kFiBsO27-yJDZhOuuspSTQEXEGwlJSnD4_nDCGLAMBzl0yVms1OBnqOiuwQIEDNGFuJTxdEE6YRRbsE1NjJ4VSDIYMM5MKdCqCoxeYDYUZh2pGPi5cyFiT6kWlRbQ0nuAjk5DPPtAkzX4vOGpN6jKtOjkC3k2T_OAyqyAnhu2Rs0tml4fSqalDhJVwtusn-AU27rrqSTkjx8632I3Lf_ZziPUeKt3zw58OSQ-LWk0tIDKO5y5zTpa1tYIHBbEUKoxZ6tMjP_aAEwUKd-ZYhrx6k7COiB_1sHgGQwRhJ_UsahmWj9CMQLWQ-OzLfCogpN22McG0g&h=nZx2LMnSA3ALea3sYnTOMLdBuF0YJFStlsIE5kgqNTM Cache-Control: - no-cache Content-Length: - - "1154756" + - "1498" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:13 GMT + - Thu, 09 Apr 2026 17:21:45 GMT Expires: - "-1" Pragma: @@ -951,20 +9763,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 7c1127105992541c704504eff38fbc74 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - e4cb5715-32f0-4c91-b4fc-a00af66075ef + - 3f0abc0b-bb26-4ca7-930b-17e3c10d930a X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174314Z:e4cb5715-32f0-4c91-b4fc-a00af66075ef + - EASTUS2:20260409T172145Z:3f0abc0b-bb26-4ca7-930b-17e3c10d930a X-Msedge-Ref: - - 'Ref A: 1E3D578D961B49509199AA796AF6E6FE Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:09Z' - status: 200 OK - code: 200 - duration: 5.0530499s + - 'Ref A: EF9FC5E809784BF391C1D5D0A36A54A2 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:21:44Z' + status: 201 Created + code: 201 + duration: 576.13775ms - id: 14 request: proto: HTTP/1.1 @@ -984,10 +9798,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285/operationStatuses/08584258515805168258?api-version=2021-04-01&t=639113521052651235&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=Et_lbxneZsfrgP6kFiBsO27-yJDZhOuuspSTQEXEGwlJSnD4_nDCGLAMBzl0yVms1OBnqOiuwQIEDNGFuJTxdEE6YRRbsE1NjJ4VSDIYMM5MKdCqCoxeYDYUZh2pGPi5cyFiT6kWlRbQ0nuAjk5DPPtAkzX4vOGpN6jKtOjkC3k2T_OAyqyAnhu2Rs0tml4fSqalDhJVwtusn-AU27rrqSTkjx8632I3Lf_ZziPUeKt3zw58OSQ-LWk0tIDKO5y5zTpa1tYIHBbEUKoxZ6tMjP_aAEwUKd-ZYhrx6k7COiB_1sHgGQwRhJ_UsahmWj9CMQLWQ-OzLfCogpN22McG0g&h=nZx2LMnSA3ALea3sYnTOMLdBuF0YJFStlsIE5kgqNTM method: GET response: proto: HTTP/2.0 @@ -995,18 +9809,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 22 uncompressed: false - body: '{"value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "97962" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:15 GMT + - Thu, 09 Apr 2026 17:22:15 GMT Expires: - "-1" Pragma: @@ -1018,20 +9832,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9a167bdc-badb-418e-99d9-82dd7b31cda3 + - e92a8cbf-a927-469a-85ea-26db19399103 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174316Z:9a167bdc-badb-418e-99d9-82dd7b31cda3 + - EASTUS:20260409T172215Z:e92a8cbf-a927-469a-85ea-26db19399103 X-Msedge-Ref: - - 'Ref A: DCBC73D5FBE14C00BEB0AFDDC48B3051 Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:14Z' + - 'Ref A: AF14205C490D4D2CA6F21979F9602EE4 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:15Z' status: 200 OK code: 200 - duration: 1.5735249s + duration: 131.431666ms - id: 15 request: proto: HTTP/1.1 @@ -1046,17 +9860,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1064,18 +9876,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 2426 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"properties":{"templateHash":"5885594674773916191","parameters":{"environmentName":{"type":"String","value":"azdtest-w0989c5"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:18.3024009Z","duration":"PT37.4514453S","correlationId":"7165db448d8aab8e2e225b303977b4e0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0989c5"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stau4pbwuu77ney"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"properties":{"templateHash":"11821345585697040437","parameters":{"environmentName":{"type":"String","value":"azdtest-d3a7764"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:22:13.5590832Z","duration":"PT28.6064551S","correlationId":"7c1127105992541c704504eff38fbc74","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d3a7764"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"styojrfhf43woz6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2405" + - "2426" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:16 GMT + - Thu, 09 Apr 2026 17:22:15 GMT Expires: - "-1" Pragma: @@ -1087,20 +9899,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 531f19d8-9ffa-45af-b82b-a4e6e7a77641 + - 37229261-1895-48fa-9dec-661968eea43a X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174316Z:531f19d8-9ffa-45af-b82b-a4e6e7a77641 + - EASTUS2:20260409T172215Z:37229261-1895-48fa-9dec-661968eea43a X-Msedge-Ref: - - 'Ref A: 43534C8E5B5146309F3C2EAAE82A93D9 Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:16Z' + - 'Ref A: 0F3F239D23D84DE6A670B9CEC97AC0EF Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:15Z' status: 200 OK code: 200 - duration: 377.6616ms + duration: 77.411958ms - id: 16 request: proto: HTTP/1.1 @@ -1122,10 +9934,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0989c5%27&api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1133,18 +9945,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 963397 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","name":"rg-azdtest-w0989c5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","DeleteAfter":"2025-04-15T18:41:40Z","IntTag":"678","BoolTag":"False"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","location":"eastus2","name":"azdtest-d3a7764-1775755285","properties":{"correlationId":"7c1127105992541c704504eff38fbc74","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceName":"rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.6064551S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"styojrfhf43woz6"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"environmentName":{"type":"String","value":"azdtest-d3a7764"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"11821345585697040437","timestamp":"2026-04-09T17:22:13.5590832Z"},"tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "358" + - "963397" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:16 GMT + - Thu, 09 Apr 2026 17:22:19 GMT Expires: - "-1" Pragma: @@ -1156,20 +9968,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9bcf6b2a-4b7a-4018-a1f0-117eb5f3faf9 + - 639492c5-d99e-4de5-b7df-2315bc3797d7 X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174316Z:9bcf6b2a-4b7a-4018-a1f0-117eb5f3faf9 + - EASTUS2:20260409T172219Z:639492c5-d99e-4de5-b7df-2315bc3797d7 X-Msedge-Ref: - - 'Ref A: 5190AFEAFD59453EA7A392F80669C7F0 Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:16Z' + - 'Ref A: 316B23FD4A534C8B8A3F56E243A3EBD4 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:15Z' status: 200 OK code: 200 - duration: 80.0242ms + duration: 3.900388208s - id: 17 request: proto: HTTP/1.1 @@ -1184,17 +9996,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/resources?api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1202,18 +10012,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 845051 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney","name":"stau4pbwuu77ney","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "845051" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:16 GMT + - Thu, 09 Apr 2026 17:22:23 GMT Expires: - "-1" Pragma: @@ -1225,20 +10035,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c737133f-acf0-417f-99ea-eafa15903073 + - 6f8c4947-9145-4bcb-9f34-71b4f2633f72 X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174316Z:c737133f-acf0-417f-99ea-eafa15903073 + - EASTUS:20260409T172223Z:6f8c4947-9145-4bcb-9f34-71b4f2633f72 X-Msedge-Ref: - - 'Ref A: CD380CD3F44C41C49E7264230EB765E7 Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:16Z' + - 'Ref A: BCB187F581E8485691938AEC1FA5A870 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:19Z' status: 200 OK code: 200 - duration: 242.7116ms + duration: 3.519339166s - id: 18 request: proto: HTTP/1.1 @@ -1253,17 +10063,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1271,18 +10079,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 515084 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"properties":{"templateHash":"5885594674773916191","parameters":{"environmentName":{"type":"String","value":"azdtest-w0989c5"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:18.3024009Z","duration":"PT37.4514453S","correlationId":"7165db448d8aab8e2e225b303977b4e0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0989c5"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stau4pbwuu77ney"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2405" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:16 GMT + - Thu, 09 Apr 2026 17:22:24 GMT Expires: - "-1" Pragma: @@ -1294,20 +10102,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0d5a0ec1-12a9-409e-9818-2c9d167ad571 + - d98f3197-7ff3-41dd-9cb5-98eeed9393d0 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174317Z:0d5a0ec1-12a9-409e-9818-2c9d167ad571 + - EASTUS2:20260409T172224Z:d98f3197-7ff3-41dd-9cb5-98eeed9393d0 X-Msedge-Ref: - - 'Ref A: EC0C9C0E15004FE1A7ECCDB0C9BA8715 Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:16Z' + - 'Ref A: 0EE6CFA8FE1A4488A3FB70CF110D0521 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:23Z' status: 200 OK code: 200 - duration: 244.7408ms + duration: 1.400961s - id: 19 request: proto: HTTP/1.1 @@ -1322,17 +10130,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0989c5%27&api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1340,18 +10146,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 415580 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","name":"rg-azdtest-w0989c5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","DeleteAfter":"2025-04-15T18:41:40Z","IntTag":"678","BoolTag":"False"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "358" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:16 GMT + - Thu, 09 Apr 2026 17:22:25 GMT Expires: - "-1" Pragma: @@ -1363,20 +10169,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a282dd90-8878-4f0a-86c2-42c62672865d + - d50d163b-5498-4a01-9a41-14fa45f6f40d X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174317Z:a282dd90-8878-4f0a-86c2-42c62672865d + - EASTUS:20260409T172225Z:d50d163b-5498-4a01-9a41-14fa45f6f40d X-Msedge-Ref: - - 'Ref A: 1750AE00692F4717AEF0ED3641FB640B Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:17Z' + - 'Ref A: A90B4F57FBAB4BAAA9868B7B6CDF03B0 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:24Z' status: 200 OK code: 200 - duration: 90.3449ms + duration: 1.03594475s - id: 20 request: proto: HTTP/1.1 @@ -1391,17 +10197,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/resources?api-version=2021-04-01 + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1409,18 +10213,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 136970 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney","name":"stau4pbwuu77ney","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5"}}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:16 GMT + - Thu, 09 Apr 2026 17:22:26 GMT Expires: - "-1" Pragma: @@ -1432,20 +10236,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 7c1127105992541c704504eff38fbc74 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 110d395b-3468-416b-801e-a8cc024c3025 + - 3d068c2a-c2c5-46fb-8704-216ab457dd3c X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174317Z:110d395b-3468-416b-801e-a8cc024c3025 + - EASTUS:20260409T172226Z:3d068c2a-c2c5-46fb-8704-216ab457dd3c X-Msedge-Ref: - - 'Ref A: 31648ABD88B4464A984BA5866ABE057C Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:17Z' + - 'Ref A: 61DAA43E1F614945B1E9787FC4F4BC0B Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:25Z' status: 200 OK code: 200 - duration: 193.8367ms + duration: 502.150917ms - id: 21 request: proto: HTTP/1.1 @@ -1467,35 +10271,33 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0989c5?api-version=2021-04-01 - method: DELETE + - 7c1127105992541c704504eff38fbc74 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2426 uncompressed: false - body: "" + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"properties":{"templateHash":"11821345585697040437","parameters":{"environmentName":{"type":"String","value":"azdtest-d3a7764"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:22:13.5590832Z","duration":"PT28.6064551S","correlationId":"7c1127105992541c704504eff38fbc74","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d3a7764"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"styojrfhf43woz6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "2426" + Content-Type: + - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:43:18 GMT + - Thu, 09 Apr 2026 17:22:26 GMT Expires: - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMDk4OUM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638803358603231428&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=GBtwDd63wXlFYVJHyY1g3G7Pb6i-iEaZkdqQqHPMDo3-V5k65J2v99zjfyXm44NGp1OR_Rn6u50kEIpqj8R9wcxxuh5Q-CLFGaYU66kWpsXJLgfugIHKvbJJZQ28dgPROXGOVvbNNRHCOvCnUb_aaLtAGkTd1SSg1mpoddsK4VSqDVNK-e40lfCbDdkO2a31f5-G01v-U6oyBrS8Isyepi4sdDtTaD0Z2le_kr4IOSbU1xGMCdIIvS2s6c5KFjbps9MvT14Al42PM8jJNpYKZ6Ud64bfQtq-VzZzjnSWlDYWl5Sv5qODmgPc9ajV9Pl1Nz_70E1LlhRy--Z1yNNCnQ&h=Rlroh6cpCw5iW5QvqLwRIQ8uG6a6P_AhCMrHkUpcrHs Pragma: - no-cache - Retry-After: - - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -1503,20 +10305,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "799" - X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "11999" + - 7c1127105992541c704504eff38fbc74 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 043bf068-4418-4b2d-8e8b-d57badbb70df + - 6d6859e0-c895-4a18-b229-106cbd7af777 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174319Z:043bf068-4418-4b2d-8e8b-d57badbb70df + - EASTUS:20260409T172226Z:6d6859e0-c895-4a18-b229-106cbd7af777 X-Msedge-Ref: - - 'Ref A: E42BEA8D00F548B3B2A3FD015E8B7E53 Ref B: MWH011020807052 Ref C: 2025-04-15T17:43:17Z' - status: 202 Accepted - code: 202 - duration: 1.7111882s + - 'Ref A: C78D5B5A47B04F9B83886A6F9AA9A345 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:26Z' + status: 200 OK + code: 200 + duration: 128.397292ms - id: 22 request: proto: HTTP/1.1 @@ -1525,7 +10327,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -1536,10 +10338,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMDk4OUM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638803358603231428&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=GBtwDd63wXlFYVJHyY1g3G7Pb6i-iEaZkdqQqHPMDo3-V5k65J2v99zjfyXm44NGp1OR_Rn6u50kEIpqj8R9wcxxuh5Q-CLFGaYU66kWpsXJLgfugIHKvbJJZQ28dgPROXGOVvbNNRHCOvCnUb_aaLtAGkTd1SSg1mpoddsK4VSqDVNK-e40lfCbDdkO2a31f5-G01v-U6oyBrS8Isyepi4sdDtTaD0Z2le_kr4IOSbU1xGMCdIIvS2s6c5KFjbps9MvT14Al42PM8jJNpYKZ6Ud64bfQtq-VzZzjnSWlDYWl5Sv5qODmgPc9ajV9Pl1Nz_70E1LlhRy--Z1yNNCnQ&h=Rlroh6cpCw5iW5QvqLwRIQ8uG6a6P_AhCMrHkUpcrHs + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -1547,16 +10347,9924 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 138770 uncompressed: false - body: "" + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:22:26 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:27:26 GMT + Source-Age: + - "90" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 94a77a13c38f185b86747788c178a10901b2fd17 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755347.689840,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 14.98225ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:22:26 GMT + Expires: + - Thu, 09 Apr 2026 17:22:26 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: 270.318792ms + - id: 24 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:22:26 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:27:26 GMT + Source-Age: + - "269" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 617e0869b5cba41a9bb88a9973d8471dcb71eb33 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755347.992962,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.592875ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:22:27 GMT + Expires: + - Thu, 09 Apr 2026 17:22:27 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 67.510625ms + - id: 26 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:22:27 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:27:27 GMT + Source-Age: + - "90" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 70b85d1034e6d04e157f3d7852ee13c30643dfc0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755347.102924,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.4025ms + - id: 27 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:22:27 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:27:27 GMT + Source-Age: + - "90" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 01e8fd0092ed33afc0420e202f45c261f5d9f8dc + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760053-MIA + X-Timer: + - S1775755347.128862,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 15.301042ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 963397 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","location":"eastus2","name":"azdtest-d3a7764-1775755285","properties":{"correlationId":"7c1127105992541c704504eff38fbc74","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceName":"rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.6064551S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"styojrfhf43woz6"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"environmentName":{"type":"String","value":"azdtest-d3a7764"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"11821345585697040437","timestamp":"2026-04-09T17:22:13.5590832Z"},"tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "963397" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:32 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3eb9660b-3a12-4ac9-8149-2f9761740886 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172232Z:3eb9660b-3a12-4ac9-8149-2f9761740886 + X-Msedge-Ref: + - 'Ref A: BF3CF2C6E0D84DB6A40F8B7C11179048 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:29Z' + status: 200 OK + code: 200 + duration: 3.9218695s + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 845051 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "845051" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:35 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - fedbf151-1f8a-4b1e-b4e4-5d1dde1efe4c + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172235Z:fedbf151-1f8a-4b1e-b4e4-5d1dde1efe4c + X-Msedge-Ref: + - 'Ref A: 81698EFAC37D4B788EE3BED7B11014CC Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:33Z' + status: 200 OK + code: 200 + duration: 2.767356917s + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 515084 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "515084" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:37 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 88642e8d-6454-41e9-a777-f39e5f15123f + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T172237Z:88642e8d-6454-41e9-a777-f39e5f15123f + X-Msedge-Ref: + - 'Ref A: 61C936D6CBFF4AE0B474F6A0A0340C1E Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:35Z' + status: 200 OK + code: 200 + duration: 2.10042475s + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:38 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a0d4c01a-0f13-486a-9bb8-380385db4b54 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172238Z:a0d4c01a-0f13-486a-9bb8-380385db4b54 + X-Msedge-Ref: + - 'Ref A: 528893A7BB094D23BB6BA920BD47110A Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:38Z' + status: 200 OK + code: 200 + duration: 818.16875ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:39 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a6f4b191-346c-4a85-b16b-e4919a637b8a + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T172239Z:a6f4b191-346c-4a85-b16b-e4919a637b8a + X-Msedge-Ref: + - 'Ref A: 0B69172D9E1B44689E30A4E3CE1845F7 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:38Z' + status: 200 OK + code: 200 + duration: 423.078291ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2426 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"properties":{"templateHash":"11821345585697040437","parameters":{"environmentName":{"type":"String","value":"azdtest-d3a7764"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:22:13.5590832Z","duration":"PT28.6064551S","correlationId":"7c1127105992541c704504eff38fbc74","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d3a7764"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"styojrfhf43woz6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2426" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:39 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 40c4f822-c336-400f-aeb9-8742e2a9d19a + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172239Z:40c4f822-c336-400f-aeb9-8742e2a9d19a + X-Msedge-Ref: + - 'Ref A: BB7BA69071414BBF911EE98C84ED72AF Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:39Z' + status: 200 OK + code: 200 + duration: 146.578041ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 364 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6","name":"styojrfhf43woz6","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:39 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3b767f78-4b64-4c7c-bdd1-1952897c4f2c + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172239Z:3b767f78-4b64-4c7c-bdd1-1952897c4f2c + X-Msedge-Ref: + - 'Ref A: 2B7ADA7AE6364FD4BD836A8398274B25 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:39Z' + status: 200 OK + code: 200 + duration: 103.48225ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2426 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"properties":{"templateHash":"11821345585697040437","parameters":{"environmentName":{"type":"String","value":"azdtest-d3a7764"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:22:13.5590832Z","duration":"PT28.6064551S","correlationId":"7c1127105992541c704504eff38fbc74","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d3a7764"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"styojrfhf43woz6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2426" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:39 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 89050409-2b56-4be4-a1a5-d660e7615c5b + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T172239Z:89050409-2b56-4be4-a1a5-d660e7615c5b + X-Msedge-Ref: + - 'Ref A: 0E6C8F5924EF4B84A5379496B28D8FB1 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:39Z' + status: 200 OK + code: 200 + duration: 122.827583ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 364 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6","name":"styojrfhf43woz6","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:22:39 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 009271be-24d8-48d5-961d-9b5d7a3fcd09 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T172239Z:009271be-24d8-48d5-961d-9b5d7a3fcd09 + X-Msedge-Ref: + - 'Ref A: 0BDD64428FAF44E79DD2C126BBC213DB Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:39Z' + status: 200 OK + code: 200 + duration: 103.64875ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d3a7764?api-version=2021-04-01 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 17:22:40 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREM0E3NzY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113522206175194&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=QvzSV8whMogAIBcsip3wgd0Sz8RdJfnFehGjS0tvOab5czzB634EU2txMlGY9DGf41OvF9fg46qujXDxP00M40JGa7LtUmm23Ej1YG93cdx0iN-_r25dLu2L-45d4GRdYMYHHw81aedYWQDt1VEGKWdBYUfIhZ4915dSuKt393hFNtF6OP5BwzZT62M2vMAKvyE8T8RtVaOzd2HQgYEdoFUlOnQAKLejCs5TYJW3NZJsmdlpABYE88dSDHLqK9jgCtV5P-xIU4TWE44kb7lHRk0gBDkHWyoz_ViL8XrY1P4Wc0aCHKOkPF1GDgURvgK8JLam17AtiwHvHG8JsfcfNA&h=W8Sr6_80MxkDXb0cz5J0o2Yn9SG_p9ZEjwZmNA7TMXc + Pragma: + - no-cache + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - c7ac84b6-2c88-4b8f-875e-b856b575f103 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T172240Z:c7ac84b6-2c88-4b8f-875e-b856b575f103 + X-Msedge-Ref: + - 'Ref A: 73D834E1D5AD45D0B9CAF6A0F0B47AB4 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:22:40Z' + status: 202 Accepted + code: 202 + duration: 225.54325ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREM0E3NzY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113522206175194&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=QvzSV8whMogAIBcsip3wgd0Sz8RdJfnFehGjS0tvOab5czzB634EU2txMlGY9DGf41OvF9fg46qujXDxP00M40JGa7LtUmm23Ej1YG93cdx0iN-_r25dLu2L-45d4GRdYMYHHw81aedYWQDt1VEGKWdBYUfIhZ4915dSuKt393hFNtF6OP5BwzZT62M2vMAKvyE8T8RtVaOzd2HQgYEdoFUlOnQAKLejCs5TYJW3NZJsmdlpABYE88dSDHLqK9jgCtV5P-xIU4TWE44kb7lHRk0gBDkHWyoz_ViL8XrY1P4Wc0aCHKOkPF1GDgURvgK8JLam17AtiwHvHG8JsfcfNA&h=W8Sr6_80MxkDXb0cz5J0o2Yn9SG_p9ZEjwZmNA7TMXc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache Content-Length: - "0" Date: - - Tue, 15 Apr 2025 17:44:35 GMT + - Thu, 09 Apr 2026 17:23:55 GMT Expires: - "-1" Pragma: @@ -1568,21 +20276,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 5bc1b6639f4b50f8b96dd832eff3795c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a17db7bb-4225-4cb5-b414-6af4371f00ca + - 626dd117-2117-4829-b732-4cf092c273a1 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174435Z:a17db7bb-4225-4cb5-b414-6af4371f00ca + - EASTUS:20260409T172355Z:626dd117-2117-4829-b732-4cf092c273a1 X-Msedge-Ref: - - 'Ref A: F68FA067F22940E2896CCF523CC2BDA6 Ref B: MWH011020807052 Ref C: 2025-04-15T17:44:35Z' + - 'Ref A: 771F7F030ECD43C982ED44EA05C01FB9 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:23:55Z' status: 200 OK code: 200 - duration: 181.3563ms - - id: 23 + duration: 173.42225ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1603,10 +20311,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1614,18 +20322,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 2426 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0989c5","azd-provision-param-hash":"29e03642e279a438794df6f0c8207fea5c9a0652d12d4d41ccc3873ea419b42d"},"properties":{"templateHash":"5885594674773916191","parameters":{"environmentName":{"type":"String","value":"azdtest-w0989c5"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:40Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:18.3024009Z","duration":"PT37.4514453S","correlationId":"7165db448d8aab8e2e225b303977b4e0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0989c5"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stau4pbwuu77ney"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0989c5/providers/Microsoft.Storage/storageAccounts/stau4pbwuu77ney"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d3a7764","azd-layer-name":"","azd-provision-param-hash":"70ef7cc899db05c9caf24c6800d14ff28b7bcd21777ac72a57e787bc2bcce4eb"},"properties":{"templateHash":"11821345585697040437","parameters":{"environmentName":{"type":"String","value":"azdtest-d3a7764"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:21:44Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:22:13.5590832Z","duration":"PT28.6064551S","correlationId":"7c1127105992541c704504eff38fbc74","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d3a7764"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"styojrfhf43woz6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d3a7764/providers/Microsoft.Storage/storageAccounts/styojrfhf43woz6"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2405" + - "2426" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:44:35 GMT + - Thu, 09 Apr 2026 17:23:55 GMT Expires: - "-1" Pragma: @@ -1637,21 +20345,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 5bc1b6639f4b50f8b96dd832eff3795c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a164f3fe-9572-4f2c-a28c-2f8ee2040cf5 + - 678bea23-e0cb-4bc0-b9b5-f05d44d27a21 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174435Z:a164f3fe-9572-4f2c-a28c-2f8ee2040cf5 + - EASTUS:20260409T172355Z:678bea23-e0cb-4bc0-b9b5-f05d44d27a21 X-Msedge-Ref: - - 'Ref A: 320F9E52644D4523A62AEFB480649B1A Ref B: MWH011020807052 Ref C: 2025-04-15T17:44:35Z' + - 'Ref A: E71F633D4F9B4F80A5D67D794099CF41 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:23:55Z' status: 200 OK code: 200 - duration: 194.8049ms - - id: 24 + duration: 123.029625ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1662,7 +20370,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w0989c5"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d3a7764"}}' form: {} headers: Accept: @@ -1676,10 +20384,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1689,10 +20397,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w0989c5"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-15T17:44:36.1938251Z","duration":"PT0.0002819S","correlationId":"e0c0eb2ff034a0bbfd98295a41722d54","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d3a7764"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:23:56.2927646Z","duration":"PT0.0009299S","correlationId":"5bc1b6639f4b50f8b96dd832eff3795c","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873/operationStatuses/08584568678092809107?api-version=2021-04-01&t=638803358794125038&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=BPdKFFc3A1kMakinux7ZY4BDQx0iI2JTgdW-NrC0BV8TsLbxjj1YRSmSrxCI3KGsVgPQ1HIbWYDg2VS3BJFUbVEhqqIo2i2jNJb8jiWmQzvl6yWY8bpwaWBrMzjRwi28CSFQtY6RXfQ96wOdMubdTjp4K4u8ai5lHJwUXmMIJ-fM431Z360rgOaLtUf_0jT3mAJ25B-zyfkpGBlrlRnwj3IjGVlYYESS_M9_5sHsNG7xn3Kp75sMFXEcDCsO32CJo59wFXScamTbkTMCvY6Jbhyo0UJsQOvb7hfiL1BaLdofWl0NaVx3tkWxU6arZNvgVPzalDZHFaP3Uq1fOvSL1A&h=DMcCnf2jiC-OQqQFo64S1Pg0rS1CIvggoSXQJPi4wqY + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285/operationStatuses/08584258514491809929?api-version=2021-04-01&t=639113522368083908&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=mlOQ6DEIFMNO-KFkDYau_HewlgtKsYQbVsBDLESdsb-3Xd8dKLDn5wqHJgpM6wxijJwj4fj41aD8JDrewdRr0VlfZNpSRDBkK3j889iEU21gh7i7toHw8GJExhqia0EgU8ppchv-ZRO3tBteTpnuY8rW4m_zzkJhXxalqExvnPnd3nFCHg1AWWcYbjAXq6wstKRo6ugFRksBehmSUvRquSddKq8plyHONbLMjlOfCj3lFqqUeJKxZCraA4gcgCERUeydwIrxIl9De6shIcxc6efFQd6MkmsdrR4Qs4CQxqx2YEDq2NlppoetdqltX7XVoRxI4Z6VId_804lYc3UXbw&h=8EeIzHnf0Do3rX-afAw9geAwPhmgskjjYpk743peB1A Cache-Control: - no-cache Content-Length: @@ -1700,7 +20408,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:44:38 GMT + - Thu, 09 Apr 2026 17:23:56 GMT Expires: - "-1" Pragma: @@ -1712,23 +20420,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 5bc1b6639f4b50f8b96dd832eff3795c X-Ms-Deployment-Engine-Version: - - 1.309.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - b2295211-fc6d-4c20-984f-6fa6393e0f87 + - d79979b4-9a80-4226-8f5f-f5efc15cd69a X-Ms-Routing-Request-Id: - - WESTUS:20250415T174439Z:b2295211-fc6d-4c20-984f-6fa6393e0f87 + - EASTUS:20260409T172356Z:d79979b4-9a80-4226-8f5f-f5efc15cd69a X-Msedge-Ref: - - 'Ref A: 5E1987C04A19414FA6912DCE2368A398 Ref B: MWH011020807052 Ref C: 2025-04-15T17:44:35Z' + - 'Ref A: 622BE43C76B04F39B5B0F35AF4B359A8 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:23:56Z' status: 200 OK code: 200 - duration: 3.7003786s - - id: 25 + duration: 827.145417ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1747,10 +20455,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873/operationStatuses/08584568678092809107?api-version=2021-04-01&t=638803358794125038&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=BPdKFFc3A1kMakinux7ZY4BDQx0iI2JTgdW-NrC0BV8TsLbxjj1YRSmSrxCI3KGsVgPQ1HIbWYDg2VS3BJFUbVEhqqIo2i2jNJb8jiWmQzvl6yWY8bpwaWBrMzjRwi28CSFQtY6RXfQ96wOdMubdTjp4K4u8ai5lHJwUXmMIJ-fM431Z360rgOaLtUf_0jT3mAJ25B-zyfkpGBlrlRnwj3IjGVlYYESS_M9_5sHsNG7xn3Kp75sMFXEcDCsO32CJo59wFXScamTbkTMCvY6Jbhyo0UJsQOvb7hfiL1BaLdofWl0NaVx3tkWxU6arZNvgVPzalDZHFaP3Uq1fOvSL1A&h=DMcCnf2jiC-OQqQFo64S1Pg0rS1CIvggoSXQJPi4wqY + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285/operationStatuses/08584258514491809929?api-version=2021-04-01&t=639113522368083908&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=mlOQ6DEIFMNO-KFkDYau_HewlgtKsYQbVsBDLESdsb-3Xd8dKLDn5wqHJgpM6wxijJwj4fj41aD8JDrewdRr0VlfZNpSRDBkK3j889iEU21gh7i7toHw8GJExhqia0EgU8ppchv-ZRO3tBteTpnuY8rW4m_zzkJhXxalqExvnPnd3nFCHg1AWWcYbjAXq6wstKRo6ugFRksBehmSUvRquSddKq8plyHONbLMjlOfCj3lFqqUeJKxZCraA4gcgCERUeydwIrxIl9De6shIcxc6efFQd6MkmsdrR4Qs4CQxqx2YEDq2NlppoetdqltX7XVoRxI4Z6VId_804lYc3UXbw&h=8EeIzHnf0Do3rX-afAw9geAwPhmgskjjYpk743peB1A method: GET response: proto: HTTP/2.0 @@ -1769,7 +20477,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:45:09 GMT + - Thu, 09 Apr 2026 17:24:27 GMT Expires: - "-1" Pragma: @@ -1781,21 +20489,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 5bc1b6639f4b50f8b96dd832eff3795c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - db357bb6-7703-4170-bc49-96cf184d8ef9 + - a21eb25c-6f12-46aa-b13e-c9d73a412720 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174510Z:db357bb6-7703-4170-bc49-96cf184d8ef9 + - EASTUS2:20260409T172427Z:a21eb25c-6f12-46aa-b13e-c9d73a412720 X-Msedge-Ref: - - 'Ref A: 2821AE686E734FADA92B8B80217F15FC Ref B: MWH011020807052 Ref C: 2025-04-15T17:45:09Z' + - 'Ref A: 42E6B7A54D6845839AC8599CE106ED48 Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:24:26Z' status: 200 OK code: 200 - duration: 417.4446ms - - id: 26 + duration: 143.209875ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1814,10 +20522,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873?api-version=2021-04-01 + - 5bc1b6639f4b50f8b96dd832eff3795c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1827,7 +20535,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0989c5-1744738873","name":"azdtest-w0989c5-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w0989c5"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:44:41.9290784Z","duration":"PT5.7352533S","correlationId":"e0c0eb2ff034a0bbfd98295a41722d54","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d3a7764-1775755285","name":"azdtest-d3a7764-1775755285","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d3a7764"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:23:57.1540553Z","duration":"PT0.8612907S","correlationId":"5bc1b6639f4b50f8b96dd832eff3795c","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -1836,7 +20544,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:45:09 GMT + - Thu, 09 Apr 2026 17:24:27 GMT Expires: - "-1" Pragma: @@ -1848,21 +20556,9243 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e0c0eb2ff034a0bbfd98295a41722d54 + - 5bc1b6639f4b50f8b96dd832eff3795c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 470763cb-7d1c-48b2-9351-0c4d881a938f + - 5ff1c7c3-e467-4d0a-90e1-0d6e1f398bb5 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174510Z:470763cb-7d1c-48b2-9351-0c4d881a938f + - EASTUS:20260409T172427Z:5ff1c7c3-e467-4d0a-90e1-0d6e1f398bb5 X-Msedge-Ref: - - 'Ref A: BE190787E5B84AABAF9E9E623C62328D Ref B: MWH011020807052 Ref C: 2025-04-15T17:45:10Z' + - 'Ref A: F3C17A5984E640B28EF8061AF9FAAD1E Ref B: BN1AA2051013045 Ref C: 2026-04-09T17:24:27Z' + status: 200 OK + code: 200 + duration: 151.810917ms + - id: 43 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:24:27 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:29:27 GMT + Source-Age: + - "211" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 483645f45b35725ea79955435beb9c8a7a081bef + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760087-MIA + X-Timer: + - S1775755467.468970,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 97.8ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:24:27 GMT + Expires: + - Thu, 09 Apr 2026 17:24:27 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: 342.305667ms + - id: 45 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:24:27 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:29:27 GMT + Source-Age: + - "76" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 081aeb6d8a8213d58435ac36ab9236ff8fc524e4 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760087-MIA + X-Timer: + - S1775755468.847899,VS0,VE2 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.47625ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:24:28 GMT + Expires: + - Thu, 09 Apr 2026 17:24:28 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 146.078125ms + - id: 47 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:24:28 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:29:28 GMT + Source-Age: + - "211" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 9ba28fae4d094f0c7d0f38affb83017545b5cbdf + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760087-MIA + X-Timer: + - S1775755468.044856,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.028875ms + - id: 48 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:24:28 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:29:28 GMT + Source-Age: + - "211" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 130c4b9eebcaf2fd6b9043fc4afa800f89b08b23 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760087-MIA + X-Timer: + - S1775755468.071485,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 234.0322ms + duration: 17.30925ms --- -env_name: azdtest-w0989c5 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1744738873" +env_name: azdtest-d3a7764 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775755285" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml index 8d1beae0936..8dccd0afb21 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:49:45 GMT + - Thu, 09 Apr 2026 17:14:07 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ff8de4d9-e3d9-46b0-87d5-aecf4eff394c + - 8e26181a-270f-4aef-8076-381cf6d19538 X-Ms-Routing-Request-Id: - - WESTUS:20260202T234946Z:ff8de4d9-e3d9-46b0-87d5-aecf4eff394c + - EASTUS:20260409T171408Z:8e26181a-270f-4aef-8076-381cf6d19538 X-Msedge-Ref: - - 'Ref A: E950943290BB4D458172F73E32DF8A66 Ref B: MWH011020807062 Ref C: 2026-02-02T23:49:44Z' + - 'Ref A: 9033995CD8EE4D1787533E8C6F5FDF0F Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:07Z' status: 200 OK code: 200 - duration: 2.309473375s + duration: 1.260158417s - id: 1 request: proto: HTTP/1.1 @@ -91,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -102,18 +102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859500 + content_length: 960970 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFda4MwFAbg39JcV0h0hdE7bezm1nMy44mjuyuuk1pR2Cx%2bFP%2f7YqG3vSr0KgfyBs6T98yyumoO1WnXHOqK6uO%2b%2bmPLMwv9hEwyTdW%2baz52v81hCrzve7ZkYvY8Q9p2MGwdNr8kdN1e74TnzvRxHYDM29h8STDxE8og0LKUMU%2fXYEKOFMiY0hXS948WqDYJb5U0NgcDDLnAIufKpqGIOK5ETLx7i0UZ6jQAEiVqszCqSF%2bAol7JSIAEF6Xf45DZ96aHInPYOGef4cRwH%2bLA4riwu3iXk%2fIBkluOrEPKXWuxvxp1ijJuLa7ynYsjUYZeVyGS9jdTLdWpLK%2b6h%2bDuX5L3EMf9ShrHfw%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1859500" + - "960970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:49:52 GMT + - Thu, 09 Apr 2026 17:14:12 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ae63dcc6-5dd0-4925-9c73-fb751edd843c + - 54021733-9770-4bdc-9e26-4405634ccb62 X-Ms-Routing-Request-Id: - - WESTUS:20260202T234953Z:ae63dcc6-5dd0-4925-9c73-fb751edd843c + - EASTUS:20260409T171412Z:54021733-9770-4bdc-9e26-4405634ccb62 X-Msedge-Ref: - - 'Ref A: 3BB20A6CA7C94B239AFA6FC5853DE209 Ref B: MWH011020807062 Ref C: 2026-02-02T23:49:46Z' + - 'Ref A: 20A18616B6264B82A17295B9BBE298C0 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:08Z' status: 200 OK code: 200 - duration: 6.619150834s + duration: 4.24515725s - id: 2 request: proto: HTTP/1.1 @@ -158,10 +158,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFda4MwFAbg39JcV0h0hdE7bezm1nMy44mjuyuuk1pR2Cx%2BFP%2F7YqG3vSr0KgfyBs6T98yyumoO1WnXHOqK6uO%2B%2BmPLMwv9hEwyTdW%2Baz52v81hCrzve7ZkYvY8Q9p2MGwdNr8kdN1e74TnzvRxHYDM29h8STDxE8og0LKUMU%2FXYEKOFMiY0hXS948WqDYJb5U0NgcDDLnAIufKpqGIOK5ETLx7i0UZ6jQAEiVqszCqSF%2BAol7JSIAEF6Xf45DZ96aHInPYOGef4cRwH%2BLA4riwu3iXk%2FIBkluOrEPKXWuxvxp1ijJuLa7ynYsjUYZeVyGS9jdTLdWpLK%2B6h%2BDuX5L3EMf9ShrHfw%3D%3D&api-version=2021-04-01 + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%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: 277396 + content_length: 845051 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "277396" + - "845051" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:49:54 GMT + - Thu, 09 Apr 2026 17:14:16 GMT Expires: - "-1" Pragma: @@ -192,20 +192,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d8f7df27-a66a-4738-95d1-82bf98286f37 + - 3a4fcaad-3c78-45e8-9b3c-240787969e44 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260202T234955Z:d8f7df27-a66a-4738-95d1-82bf98286f37 + - EASTUS:20260409T171416Z:3a4fcaad-3c78-45e8-9b3c-240787969e44 X-Msedge-Ref: - - 'Ref A: 802586BAFF094A3E8490F5A268E6AD56 Ref B: MWH011020807062 Ref C: 2026-02-02T23:49:53Z' + - 'Ref A: D0307E3D63C54C809E82D36952DD3C35 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:12Z' status: 200 OK code: 200 - duration: 1.420537667s + duration: 3.776560833s - id: 3 request: proto: HTTP/1.1 @@ -225,10 +225,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -236,18 +236,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 249291 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY%2fLboMwEEW%2fBa%2bJZJNWqtgBJi1tZlwbmyrdRZQiCAKpJeIR8e8lTVhE2c2Ze2akeyJpU7dFfdy3RVPr5pDVv8Q9kdCLtYmd81hnffu%2b%2f2mLs%2fGWDcQlzHqyUO96GHcrYv8bqumWjK0dSx02PvC8k%2baTg5EPyH1f8YpLmmzAhBS1z6VOAtRf34qh2Ma0E9zMHoww5gzLnIrZhjKiGDCpaf8qWRWqxAfNKlTm0YgyeQYdDYJHDDg4yL0Bx3S%2bNwOU6YpMNglC1Mrbmpi49bGq7GuxhT7Ca81LeMHbcL0gCqVf7v7Fwtxtp%2bkP\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "249291" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:49:56 GMT + - Thu, 09 Apr 2026 17:14:17 GMT Expires: - "-1" Pragma: @@ -259,20 +259,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0bdbb3b6-f557-44d3-b764-1c447115d337 + - d597e5a6-a8e7-4c94-9ec4-84311f1ae6ab X-Ms-Routing-Request-Id: - - WESTUS2:20260202T234957Z:0bdbb3b6-f557-44d3-b764-1c447115d337 + - EASTUS:20260409T171418Z:d597e5a6-a8e7-4c94-9ec4-84311f1ae6ab X-Msedge-Ref: - - 'Ref A: 559688FEB1854D9F9D31DB20343DF816 Ref B: MWH011020807062 Ref C: 2026-02-02T23:49:55Z' + - 'Ref A: 824E379E49834C27A053EDF91FC5D21A Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:16Z' status: 200 OK code: 200 - duration: 2.419868208s + duration: 1.520968542s - id: 4 request: proto: HTTP/1.1 @@ -292,10 +292,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY%2FLboMwEEW%2FBa%2BJZJNWqtgBJi1tZlwbmyrdRZQiCAKpJeIR8e8lTVhE2c2Ze2akeyJpU7dFfdy3RVPr5pDVv8Q9kdCLtYmd81hnffu%2B%2F2mLs%2FGWDcQlzHqyUO96GHcrYv8bqumWjK0dSx02PvC8k%2BaTg5EPyH1f8YpLmmzAhBS1z6VOAtRf34qh2Ma0E9zMHoww5gzLnIrZhjKiGDCpaf8qWRWqxAfNKlTm0YgyeQYdDYJHDDg4yL0Bx3S%2BNwOU6YpMNglC1Mrbmpi49bGq7GuxhT7Ca81LeMHbcL0gCqVf7v7Fwtxtp%2BkP&api-version=2021-04-01 + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -303,18 +303,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:49:58 GMT + - Thu, 09 Apr 2026 17:14:18 GMT Expires: - "-1" Pragma: @@ -326,68 +326,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 22da237a-8c31-43bb-b6e5-0ffc247e85c2 + - c56f87ab-7016-407d-9ce0-9abab8469316 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T234958Z:22da237a-8c31-43bb-b6e5-0ffc247e85c2 + - EASTUS:20260409T171419Z:c56f87ab-7016-407d-9ce0-9abab8469316 X-Msedge-Ref: - - 'Ref A: 24816220FE464BA49C18974A7BCBAE17 Ref B: MWH011020807062 Ref C: 2026-02-02T23:49:57Z' + - 'Ref A: BC974EED81B846289A1B771AC28FAFA6 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:18Z' status: 200 OK code: 200 - duration: 1.056405542s + duration: 1.022959917s - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5151 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"arrayValue":{"value":["item1","item2"],"reference":null},"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-de061bc","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"objectValue":{"value":{"key":"value"},"reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "5151" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179/validate?api-version=2021-04-01 - method: POST + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2147 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-de061bc"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T00:49:59Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-02T23:49:59.2418202Z","duration":"PT0S","correlationId":"985a21a76271d923ac4df6ee24a8f6ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de061bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2147" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:49:59 GMT + - Thu, 09 Apr 2026 17:14:19 GMT Expires: - "-1" Pragma: @@ -399,32 +393,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - 454133020af8c63f0442fbe14b967dbd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - d0111d45-ceb5-4a2b-bfb2-a7effca07067 + - 289ac5ce-edc7-429a-8e79-23ad64a77daa X-Ms-Routing-Request-Id: - - WESTUS:20260202T235000Z:d0111d45-ceb5-4a2b-bfb2-a7effca07067 + - EASTUS:20260409T171419Z:289ac5ce-edc7-429a-8e79-23ad64a77daa X-Msedge-Ref: - - 'Ref A: 3FAE1145093543FA989DA4B3CE78317E Ref B: MWH011020807062 Ref C: 2026-02-02T23:49:58Z' + - 'Ref A: 8C0B31F2BF6546189841C18175D8D01D Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:19Z' status: 200 OK code: 200 - duration: 1.783593458s + duration: 418.402ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5151 + content_length: 5150 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"arrayValue":{"value":["item1","item2"],"reference":null},"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-de061bc","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"objectValue":{"value":{"key":"value"},"reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"arrayValue":{"value":["item1","item2"],"reference":null},"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-de281c2","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"objectValue":{"value":{"key":"value"},"reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"}}' form: {} headers: Accept: @@ -434,35 +428,33 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5151" + - "5150" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179?api-version=2021-04-01 - method: PUT + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 2146 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-de061bc"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T00:50:00Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-02T23:50:01.0157428Z","duration":"PT0.0004904S","correlationId":"985a21a76271d923ac4df6ee24a8f6ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de061bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-de281c2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:14:21Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:14:21.7513485Z","duration":"PT0S","correlationId":"454133020af8c63f0442fbe14b967dbd","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de281c2"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"}]}}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179/operationStatuses/08584315306844483997?api-version=2021-04-01&t=639056730040784177&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=MmeeRMi2v8hOJlGY8pJBa9_o1vQ6pZWAoboAnTsgigpVlFdqCTW0TfXC6ONjD-skbZgbuEvgC3SSGx4Vl7_nVllvRovSvAzkkaDDSb_5lVwKlTqRjkS5q9dueZh_KO7j29ha6TA8vbDSdkvp3S2umsUx7k0vKbU_MuJZAf3NHWaGbMYQRJYTW1qD-ns3wx5mpIqxktZB9hi_SCuhZJPqnCnYLHjaWli4Vca7zQvpEoKvVUx0_xomyaxIpurTFRhqaa5PqKmKoqOYxngSlyZnbq5U9qzD7Qlp2Ur5wrLaonCqZsM5fgP2Weej0xCtVRmq8fZZy6gSXgeY20rY-x-crA&h=5XsrT2LfA8dbyQcHHixMmTioqnk_HI1Fbgg06cgHd0c Cache-Control: - no-cache Content-Length: - - "1734" + - "2146" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:50:03 GMT + - Thu, 09 Apr 2026 17:14:22 GMT Expires: - "-1" Pragma: @@ -474,64 +466,70 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 24b1fbf9-4d41-4104-9a27-294a0e0568b3 + - 785310b7-6181-4fe1-bd53-2ae271bba606 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235004Z:24b1fbf9-4d41-4104-9a27-294a0e0568b3 + - EASTUS2:20260409T171422Z:785310b7-6181-4fe1-bd53-2ae271bba606 X-Msedge-Ref: - - 'Ref A: 992DB01A26FF4BA0A735E9E69A710CC0 Ref B: MWH011020807062 Ref C: 2026-02-02T23:50:00Z' - status: 201 Created - code: 201 - duration: 3.435000041s + - 'Ref A: B226EFA2429A4E9FA890167DD4061619 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:21Z' + status: 200 OK + code: 200 + duration: 1.568488875s - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5150 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"arrayValue":{"value":["item1","item2"],"reference":null},"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-de281c2","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"objectValue":{"value":{"key":"value"},"reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "5150" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179/operationStatuses/08584315306844483997?api-version=2021-04-01&t=639056730040784177&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=MmeeRMi2v8hOJlGY8pJBa9_o1vQ6pZWAoboAnTsgigpVlFdqCTW0TfXC6ONjD-skbZgbuEvgC3SSGx4Vl7_nVllvRovSvAzkkaDDSb_5lVwKlTqRjkS5q9dueZh_KO7j29ha6TA8vbDSdkvp3S2umsUx7k0vKbU_MuJZAf3NHWaGbMYQRJYTW1qD-ns3wx5mpIqxktZB9hi_SCuhZJPqnCnYLHjaWli4Vca7zQvpEoKvVUx0_xomyaxIpurTFRhqaa5PqKmKoqOYxngSlyZnbq5U9qzD7Qlp2Ur5wrLaonCqZsM5fgP2Weej0xCtVRmq8fZZy6gSXgeY20rY-x-crA&h=5XsrT2LfA8dbyQcHHixMmTioqnk_HI1Fbgg06cgHd0c - method: GET + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 1733 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-de281c2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:14:22Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:14:23.0409673Z","duration":"PT0.0009763S","correlationId":"454133020af8c63f0442fbe14b967dbd","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de281c2"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842/operationStatuses/08584258520224283881?api-version=2021-04-01&t=639113516633534683&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=svTlFrwAxwV_FAWwYrmFiN5ktWivs3BLSXuXZGDL4RK356eD9wJ8Xk2g8h_bKCvYkOXFNwWqeEwZo_8oEdMzzqWDXNRnNpOCXEbApAg5_j7Qk9-SHNQnnuBGwNTa0EGhYeNd9_UtIj1ezI_MSbZSQtLDPlH_UIfKshh729d934noxezD5WIYoXybDqy-YL960-SKqivP3hiqRM7DytX6wq2GpvMPIJc_uZVEExsW7S7i4h_C_9c3gEk730JNTamTFW_zvtVCYJWj0bjg8jWFwwUC7ZwA94jMFGO_K0ZhMfi_CRMBtAu_q95z1bHYlFvls_6Hgbf9Bc94jYJHA1jZSQ&h=cQs3hBwb-SjEiADoIfcOa8wKRgfeMtsp5k_rt4SGpQM Cache-Control: - no-cache Content-Length: - - "22" + - "1733" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:04 GMT + - Thu, 09 Apr 2026 17:14:22 GMT Expires: - "-1" Pragma: @@ -543,20 +541,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 454133020af8c63f0442fbe14b967dbd + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 97095960-5583-4e18-85b5-e68587fffa7d + - fef2a83d-97ff-4408-b009-fc0796042172 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235105Z:97095960-5583-4e18-85b5-e68587fffa7d + - EASTUS2:20260409T171423Z:fef2a83d-97ff-4408-b009-fc0796042172 X-Msedge-Ref: - - 'Ref A: C19EA17E8ED949AAA4614229FD3FAF27 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:04Z' - status: 200 OK - code: 200 - duration: 468.519833ms + - 'Ref A: DC94AFD60F58477DB4C193662A7BDC3E Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:14:22Z' + status: 201 Created + code: 201 + duration: 656.575166ms - id: 8 request: proto: HTTP/1.1 @@ -576,10 +576,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179?api-version=2021-04-01 + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842/operationStatuses/08584258520224283881?api-version=2021-04-01&t=639113516633534683&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=svTlFrwAxwV_FAWwYrmFiN5ktWivs3BLSXuXZGDL4RK356eD9wJ8Xk2g8h_bKCvYkOXFNwWqeEwZo_8oEdMzzqWDXNRnNpOCXEbApAg5_j7Qk9-SHNQnnuBGwNTa0EGhYeNd9_UtIj1ezI_MSbZSQtLDPlH_UIfKshh729d934noxezD5WIYoXybDqy-YL960-SKqivP3hiqRM7DytX6wq2GpvMPIJc_uZVEExsW7S7i4h_C_9c3gEk730JNTamTFW_zvtVCYJWj0bjg8jWFwwUC7ZwA94jMFGO_K0ZhMfi_CRMBtAu_q95z1bHYlFvls_6Hgbf9Bc94jYJHA1jZSQ&h=cQs3hBwb-SjEiADoIfcOa8wKRgfeMtsp5k_rt4SGpQM method: GET response: proto: HTTP/2.0 @@ -587,18 +587,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2801 + content_length: 22 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-de061bc"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T00:50:00Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-02T23:50:35.5435628Z","duration":"PT34.52782S","correlationId":"985a21a76271d923ac4df6ee24a8f6ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de061bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stban7hrfzvz7v4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"}]}}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "2801" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:04 GMT + - Thu, 09 Apr 2026 17:15:23 GMT Expires: - "-1" Pragma: @@ -610,20 +610,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6a9b2a4e-e8e8-4ca3-ade5-000a7ac8fc56 + - 3b5b9575-3bbf-4a13-b39b-e018c833dd43 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235105Z:6a9b2a4e-e8e8-4ca3-ade5-000a7ac8fc56 + - EASTUS2:20260409T171524Z:3b5b9575-3bbf-4a13-b39b-e018c833dd43 X-Msedge-Ref: - - 'Ref A: 4EFBCEB0619540ACBD275E7D3755E10C Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:05Z' + - 'Ref A: 4BA99215FE3B4B52A919CA4796E6EEA6 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:23Z' status: 200 OK code: 200 - duration: 360.527541ms + duration: 95.163125ms - id: 9 request: proto: HTTP/1.1 @@ -638,17 +638,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-de061bc%27&api-version=2021-04-01 + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -656,18 +654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 2801 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","name":"rg-azdtest-de061bc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","DeleteAfter":"2026-02-03T00:50:00Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[\"item1\",\"item2\"]","ObjectTag":"{\"key\":\"value\"}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-de281c2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:14:22Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:14:58.1896113Z","duration":"PT35.148644S","correlationId":"454133020af8c63f0442fbe14b967dbd","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de281c2"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuctm7tqtpzvkw"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "465" + - "2801" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:04 GMT + - Thu, 09 Apr 2026 17:15:23 GMT Expires: - "-1" Pragma: @@ -679,20 +677,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 985a21a76271d923ac4df6ee24a8f6ed + - 454133020af8c63f0442fbe14b967dbd X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 52898164-fc50-4675-8b0e-1c1ea6f71e62 + - 014c36fd-cbd8-4e56-8426-386f46959ca0 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235105Z:52898164-fc50-4675-8b0e-1c1ea6f71e62 + - EASTUS:20260409T171524Z:014c36fd-cbd8-4e56-8426-386f46959ca0 X-Msedge-Ref: - - 'Ref A: 21C689AE73DC4352AB48947FF76A41F9 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:05Z' + - 'Ref A: CE29336E88854399BC7256A7C7BE1808 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:24Z' status: 200 OK code: 200 - duration: 115.644708ms + duration: 143.660791ms - id: 10 request: proto: HTTP/1.1 @@ -701,55 +699,67 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: aka.ms + host: management.azure.com remote_addr: "" request_uri: "" body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) - url: https://aka.ms:443/azd/extensions/registry/dev + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 454133020af8c63f0442fbe14b967dbd + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-de281c2%27&api-version=2021-04-01 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: 0 + content_length: 465 uncompressed: false - body: "" + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","name":"rg-azdtest-de281c2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","DeleteAfter":"2026-04-09T18:14:22Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[\"item1\",\"item2\"]","ObjectTag":"{\"key\":\"value\"}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive + - no-cache Content-Length: - - "0" + - "465" + Content-Type: + - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:06 GMT + - Thu, 09 Apr 2026 17:15:23 GMT Expires: - - Mon, 02 Feb 2026 23:51:06 GMT - Location: - - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + - "-1" 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: 826.1925ms + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 454133020af8c63f0442fbe14b967dbd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b5964d1c-1107-42be-95d1-28b4eb6d9b61 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171524Z:b5964d1c-1107-42be-95d1-28b4eb6d9b61 + X-Msedge-Ref: + - 'Ref A: 8281B8F43828460B82C944C3FB847388 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:24Z' + status: 200 OK + code: 200 + duration: 157.093875ms - id: 11 request: proto: HTTP/1.1 @@ -768,11 +778,9 @@ interactions: - gzip Authorization: - SANITIZED - Referer: - - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) - url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -780,999 +788,9246 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 41722 + content_length: 138770 uncompressed: false body: |- { "extensions": [ { - "id": "microsoft.azd.demo", - "namespace": "demo", - "displayName": "Demo Extension", - "description": "This extension provides examples of the AZD extension framework.", + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", "versions": [ { + "version": "0.1.2", "capabilities": [ - "custom-commands", - "lifecycle-events" + "custom-commands" ], - "version": "0.1.0-beta.1", - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" }, "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" + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.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" + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" }, - "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" + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" } - } + }, + "entryPoint": "app" }, { + "version": "0.3.1", "capabilities": [ "custom-commands", - "lifecycle-events" + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" }, - "entryPoint": "microsoft-azd-demo-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" }, - "entryPoint": "microsoft-azd-demo-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" }, - "entryPoint": "microsoft-azd-demo-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" }, - "entryPoint": "microsoft-azd-demo-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" }, - "entryPoint": "microsoft-azd-demo-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" }, - "entryPoint": "microsoft-azd-demo-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" } } - } - ] - }, - { - "id": "microsoft.azd.ai.builder", - "namespace": "ai", - "displayName": "AZD AI Builder", - "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", - "versions": [ + }, { + "version": "0.3.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.1.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.3.3", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-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.3.7", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.4.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.3.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.4.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.1", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.4.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.4.2", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.5", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.5.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AZD extension project.", - "usage": "azd x init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "build", - "description": "Build the AZD extension project.", - "usage": "azd x build" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" }, - { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" }, - { - "name": "publish", - "description": "Publish the AZD extension project to an extension source.", - "usage": "azd x publish" + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.7", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.5.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AZD extension project.", - "usage": "azd x init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "build", - "description": "Build the AZD extension project.", - "usage": "azd x build" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "publish", - "description": "Publish the AZD extension project to an extension source.", - "usage": "azd x publish" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" } } - } - ] - } - ] - } - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - max-age=300 - Content-Length: - - "41722" - Content-Security-Policy: - - default-src 'none'; style-src 'unsafe-inline'; sandbox - Content-Type: - - text/plain; charset=utf-8 - Cross-Origin-Resource-Policy: - - cross-origin - Date: - - Mon, 02 Feb 2026 23:51:06 GMT - Etag: - - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" - Expires: - - Mon, 02 Feb 2026 23:56:06 GMT - Source-Age: - - "0" - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization,Accept-Encoding - Via: - - 1.1 varnish - X-Cache: - - MISS - X-Cache-Hits: - - "0" - X-Content-Type-Options: - - nosniff - X-Fastly-Request-Id: - - c848c9a239e9abf1f8e9f4a1b04a23f4c98cbfda - X-Frame-Options: - - deny - X-Github-Request-Id: - - A3D2:201A04:1F269F:25CB00:6981386A - X-Served-By: - - cache-bfi-krnt7300101-BFI - X-Timer: - - S1770076267.864577,VS0,VE124 - X-Xss-Protection: - - 1; mode=block - status: 200 OK - code: 200 - duration: 233.27325ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-de061bc%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","name":"rg-azdtest-de061bc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","DeleteAfter":"2026-02-03T00:50:00Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[\"item1\",\"item2\"]","ObjectTag":"{\"key\":\"value\"}"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "465" - Content-Type: - - application/json; charset=utf-8 - Date: - - Mon, 02 Feb 2026 23:51:07 GMT - Expires: - - "-1" - Pragma: - - no-cache + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:15:24 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:20:24 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 5a7e2d075d96089dd8fa992e682a5caf516a0170 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760099-MIA + X-Timer: + - S1775754925.564962,VS0,VE61 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 151.432667ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:15:24 GMT + Expires: + - Thu, 09 Apr 2026 17:15:24 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: 160.576708ms + - id: 13 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:15:24 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:20:24 GMT + Source-Age: + - "148" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - deb0db4b2bd2289bf92a846dcc5564aaf8358c0d + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760099-MIA + X-Timer: + - S1775754925.824374,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.823833ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:15:24 GMT + Expires: + - Thu, 09 Apr 2026 17:15:24 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 138.493208ms + - id: 15 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:15:25 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:20:25 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 1eca714342e6e3dace909d90ccd5e3739fec05ef + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760099-MIA + X-Timer: + - S1775754925.006018,VS0,VE62 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 75.413834ms + - id: 16 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:15:25 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:20:25 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - cda4fc9fb28ad9406b55cc19642b7ef0496f3490 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760099-MIA + X-Timer: + - S1775754925.106399,VS0,VE82 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 101.422958ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin) + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-de281c2%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 465 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","name":"rg-azdtest-de281c2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","DeleteAfter":"2026-04-09T18:14:22Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[\"item1\",\"item2\"]","ObjectTag":"{\"key\":\"value\"}"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "465" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:15:25 GMT + Expires: + - "-1" + Pragma: + - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -1780,21 +10035,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d3633909-b40f-41fd-a24d-15884249a77f + - c0a028e1-69b9-4eb6-9b73-da1089fad74b X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d3633909-b40f-41fd-a24d-15884249a77f + - c0a028e1-69b9-4eb6-9b73-da1089fad74b X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235108Z:d3633909-b40f-41fd-a24d-15884249a77f + - EASTUS:20260409T171525Z:c0a028e1-69b9-4eb6-9b73-da1089fad74b X-Msedge-Ref: - - 'Ref A: 265A98123B414D7886F8136D64AB2D90 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:07Z' + - 'Ref A: AD051F6206054F2C934063ABE68D6982 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:25Z' status: 200 OK code: 200 - duration: 365.900041ms - - id: 13 + duration: 152.925042ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1815,10 +10070,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1826,18 +10081,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859500 + content_length: 963772 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFda4MwFAbg39JcV0h0hdE7bezm1nMy44mjuyuuk1pR2Cx%2bFP%2f7YqG3vSr0KgfyBs6T98yyumoO1WnXHOqK6uO%2b%2bmPLMwv9hEwyTdW%2baz52v81hCrzve7ZkYvY8Q9p2MGwdNr8kdN1e74TnzvRxHYDM29h8STDxE8og0LKUMU%2fXYEKOFMiY0hXS948WqDYJb5U0NgcDDLnAIufKpqGIOK5ETLx7i0UZ6jQAEiVqszCqSF%2bAol7JSIAEF6Xf45DZ96aHInPYOGef4cRwH%2bLA4riwu3iXk%2fIBkluOrEPKXWuxvxp1ijJuLa7ynYsjUYZeVyGS9jdTLdWpLK%2b6h%2bDuX5L3EMf9ShrHfw%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","location":"eastus2","name":"azdtest-de281c2-1775754842","properties":{"correlationId":"454133020af8c63f0442fbe14b967dbd","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","resourceName":"rg-azdtest-de281c2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT35.148644S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuctm7tqtpzvkw"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{"key":"value"}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":["item1","item2"]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:14:22Z"},"environmentName":{"type":"String","value":"azdtest-de281c2"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{"key":"value"}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:14:58.1896113Z"},"tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1859500" + - "963772" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:15 GMT + - Thu, 09 Apr 2026 17:15:30 GMT Expires: - "-1" Pragma: @@ -1849,21 +10104,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - 26dae3d9-e2ff-48de-9e1c-dd15a47f69d8 + - 50f4a52e-b9d0-49bd-92bb-cba314e0d075 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235116Z:26dae3d9-e2ff-48de-9e1c-dd15a47f69d8 + - EASTUS:20260409T171531Z:50f4a52e-b9d0-49bd-92bb-cba314e0d075 X-Msedge-Ref: - - 'Ref A: 0D5BA0B8F13D45D1A0C5063B0AE05CD9 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:10Z' + - 'Ref A: 993BFDBDF17E4580B74330F81B94B959 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:27Z' status: 200 OK code: 200 - duration: 6.497235875s - - id: 14 + duration: 3.394506375s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1882,10 +10137,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFda4MwFAbg39JcV0h0hdE7bezm1nMy44mjuyuuk1pR2Cx%2BFP%2F7YqG3vSr0KgfyBs6T98yyumoO1WnXHOqK6uO%2B%2BmPLMwv9hEwyTdW%2Baz52v81hCrzve7ZkYvY8Q9p2MGwdNr8kdN1e74TnzvRxHYDM29h8STDxE8og0LKUMU%2FXYEKOFMiY0hXS948WqDYJb5U0NgcDDLnAIufKpqGIOK5ETLx7i0UZ6jQAEiVqszCqSF%2BAol7JSIAEF6Xf45DZ96aHInPYOGef4cRwH%2BLA4riwu3iXk%2FIBkluOrEPKXWuxvxp1ijJuLa7ynYsjUYZeVyGS9jdTLdWpLK%2B6h%2BDuX5L3EMf9ShrHfw%3D%3D&api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1893,18 +10148,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 277396 + content_length: 845051 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "277396" + - "845051" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:17 GMT + - Thu, 09 Apr 2026 17:15:33 GMT Expires: - "-1" Pragma: @@ -1916,21 +10171,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 720e5964-b0e5-48ee-beef-e332adb7cb69 + - f95662b8-e415-45de-bc4c-227b372c4a46 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235118Z:720e5964-b0e5-48ee-beef-e332adb7cb69 + - EASTUS:20260409T171534Z:f95662b8-e415-45de-bc4c-227b372c4a46 X-Msedge-Ref: - - 'Ref A: 328E098A62BF4FB693D7BC4BF389DE6E Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:16Z' + - 'Ref A: 6A4842383B1E4BE283C60FC575DBF80C Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:31Z' status: 200 OK code: 200 - duration: 1.720360125s - - id: 15 + duration: 2.944420792s + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1949,10 +10204,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1960,18 +10215,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 252115 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCdXFLLxZW%2bLUFrltr3NvZmOG0ZRkw8Aw%2fPfJlIfFt3u%2b8%2bUm50zeKl8X%2fnSoi8qbqsz9N4nPRMy1sXoynD5v6%2b3hqy4GY53%2fkJjQ4ClQZt%2fKbv9Awj8Dqmbs6HQWQJkwyY9NZl%2b5tNmj4owBdzyLMJFWRMownhlcKPP%2bAVSlGx01KbcXT3ayO1L1KdqUP0%2fkwBZUADJpqFsCggZUW8QVvzBtKEusgxWgnMkSbObYGiN8UYh2V9YJ6UOyEMrAfGM1if3JufA2bkw7cZt6La%2fxfzkdo0rBLO%2f%2b6dTe0b7%2fBQ%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","location":"eastus2","name":"azdtest-de061bc-1770076179","properties":{"correlationId":"985a21a76271d923ac4df6ee24a8f6ed","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","resourceName":"rg-azdtest-de061bc","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT34.52782S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stban7hrfzvz7v4"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{"key":"value"}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":["item1","item2"]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T00:50:00Z"},"environmentName":{"type":"String","value":"azdtest-de061bc"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{"key":"value"}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-02T23:50:35.5435628Z"},"tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "252115" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:19 GMT + - Thu, 09 Apr 2026 17:15:35 GMT Expires: - "-1" Pragma: @@ -1983,21 +10238,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4c56bc62-1cdd-40a9-be01-db3664047b81 + - bd980ceb-0a47-4b51-8a9b-82b46bee13cf X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235120Z:4c56bc62-1cdd-40a9-be01-db3664047b81 + - EASTUS2:20260409T171535Z:bd980ceb-0a47-4b51-8a9b-82b46bee13cf X-Msedge-Ref: - - 'Ref A: EEF3D2B35DA940308D843D4793FFC513 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:18Z' + - 'Ref A: 6315ACFA7C27471E9637EACDF5744DFC Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:34Z' status: 200 OK code: 200 - duration: 2.141381208s - - id: 16 + duration: 1.573415417s + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:15:36 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 4db2316e-202d-42fb-a33f-3bbfafcb50ac + X-Ms-Routing-Request-Id: + - EASTUS:20260409T171537Z:4db2316e-202d-42fb-a33f-3bbfafcb50ac + X-Msedge-Ref: + - 'Ref A: 48BE0B2BA3464249AA0A506724DDBE73 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:35Z' + status: 200 OK + code: 200 + duration: 1.193873s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -2016,10 +10338,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCdXFLLxZW%2BLUFrltr3NvZmOG0ZRkw8Aw%2FPfJlIfFt3u%2B8%2BUm50zeKl8X%2FnSoi8qbqsz9N4nPRMy1sXoynD5v6%2B3hqy4GY53%2FkJjQ4ClQZt%2FKbv9Awj8Dqmbs6HQWQJkwyY9NZl%2B5tNmj4owBdzyLMJFWRMownhlcKPP%2BAVSlGx01KbcXT3ayO1L1KdqUP0%2FkwBZUADJpqFsCggZUW8QVvzBtKEusgxWgnMkSbObYGiN8UYh2V9YJ6UOyEMrAfGM1if3JufA2bkw7cZt6La%2Fxfzkdo0rBLO%2F%2B6dTe0b7%2FBQ%3D%3D&api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2027,18 +10349,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:20 GMT + - Thu, 09 Apr 2026 17:15:37 GMT Expires: - "-1" Pragma: @@ -2050,21 +10372,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c2d579d5-12ac-49ad-8dbf-eef7c5966b4d + - c3fec478-1023-4fa6-aa08-ba8238a29b11 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235121Z:c2d579d5-12ac-49ad-8dbf-eef7c5966b4d + - EASTUS2:20260409T171537Z:c3fec478-1023-4fa6-aa08-ba8238a29b11 X-Msedge-Ref: - - 'Ref A: EAC47A7C9AFE4FF89C4EF4856A2F5F0B Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:20Z' + - 'Ref A: 0992DF28AC2D44ECA6DCF690E6330EB9 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:37Z' status: 200 OK code: 200 - duration: 601.474458ms - - id: 17 + duration: 419.020834ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -2085,10 +10407,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179?api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2098,7 +10420,7 @@ interactions: trailer: {} content_length: 2801 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-de061bc"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T00:50:00Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-02T23:50:35.5435628Z","duration":"PT34.52782S","correlationId":"985a21a76271d923ac4df6ee24a8f6ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de061bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stban7hrfzvz7v4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-de281c2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:14:22Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:14:58.1896113Z","duration":"PT35.148644S","correlationId":"454133020af8c63f0442fbe14b967dbd","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de281c2"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuctm7tqtpzvkw"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"}]}}' headers: Cache-Control: - no-cache @@ -2107,7 +10429,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:20 GMT + - Thu, 09 Apr 2026 17:15:37 GMT Expires: - "-1" Pragma: @@ -2119,21 +10441,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 70c865b5-84f7-4844-b442-f0f161d8b70e + - 6040d711-f306-4e2a-8377-e36294b9ebb2 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235121Z:70c865b5-84f7-4844-b442-f0f161d8b70e + - EASTUS2:20260409T171537Z:6040d711-f306-4e2a-8377-e36294b9ebb2 X-Msedge-Ref: - - 'Ref A: 4EE138D657F14B5582E440BC44178681 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:21Z' + - 'Ref A: D06DBE1960AB4EB1A0372BF3961ADB70 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:37Z' status: 200 OK code: 200 - duration: 254.627667ms - - id: 18 + duration: 80.4255ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -2154,10 +10476,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/resources?api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2167,7 +10489,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4","name":"stban7hrfzvz7v4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw","name":"stuctm7tqtpzvkw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2"}}]}' headers: Cache-Control: - no-cache @@ -2176,7 +10498,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:20 GMT + - Thu, 09 Apr 2026 17:15:37 GMT Expires: - "-1" Pragma: @@ -2188,21 +10510,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a0f38d77-238c-4492-b9a2-e78431f19348 + - c355425f-7798-4180-9727-cc9ad0e47217 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235121Z:a0f38d77-238c-4492-b9a2-e78431f19348 + - EASTUS:20260409T171537Z:c355425f-7798-4180-9727-cc9ad0e47217 X-Msedge-Ref: - - 'Ref A: D1A8807B90A947BBA9FA222A1B3FAB46 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:21Z' + - 'Ref A: 0CE37C8DD98E439B980BF6C64065275D Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:37Z' status: 200 OK code: 200 - duration: 213.565958ms - - id: 19 + duration: 120.529625ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -2223,10 +10545,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179?api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2236,7 +10558,7 @@ interactions: trailer: {} content_length: 2801 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-de061bc"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T00:50:00Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-02T23:50:35.5435628Z","duration":"PT34.52782S","correlationId":"985a21a76271d923ac4df6ee24a8f6ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de061bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stban7hrfzvz7v4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-de281c2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:14:22Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:14:58.1896113Z","duration":"PT35.148644S","correlationId":"454133020af8c63f0442fbe14b967dbd","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de281c2"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuctm7tqtpzvkw"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"}]}}' headers: Cache-Control: - no-cache @@ -2245,7 +10567,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:21 GMT + - Thu, 09 Apr 2026 17:15:37 GMT Expires: - "-1" Pragma: @@ -2257,21 +10579,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cc82ce6c-df10-499d-b38f-095d2815ea81 + - 19d00d21-ed49-4a6f-99d9-048b73143172 X-Ms-Routing-Request-Id: - - EASTUS2:20260202T235122Z:cc82ce6c-df10-499d-b38f-095d2815ea81 + - EASTUS:20260409T171537Z:19d00d21-ed49-4a6f-99d9-048b73143172 X-Msedge-Ref: - - 'Ref A: 5EFB9B3372404F029587EA249A7B85A4 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:21Z' + - 'Ref A: 0EFAE7F58F6B4B38BDA0419572FEC3BC Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:37Z' status: 200 OK code: 200 - duration: 280.792125ms - - id: 20 + duration: 132.853417ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -2292,10 +10614,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/resources?api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2305,7 +10627,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4","name":"stban7hrfzvz7v4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw","name":"stuctm7tqtpzvkw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2"}}]}' headers: Cache-Control: - no-cache @@ -2314,7 +10636,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:51:21 GMT + - Thu, 09 Apr 2026 17:15:37 GMT Expires: - "-1" Pragma: @@ -2326,21 +10648,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9dd0e181-54c4-4d11-9437-cec277473528 + - c3df44fb-6b90-4668-bdfb-06bc3dd4b1bf X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235122Z:9dd0e181-54c4-4d11-9437-cec277473528 + - EASTUS2:20260409T171538Z:c3df44fb-6b90-4668-bdfb-06bc3dd4b1bf X-Msedge-Ref: - - 'Ref A: 5AA52A1A210F484CA32C6674C581B853 Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:22Z' + - 'Ref A: DACE9C1745BF474F87ADCEEE6BAFD15B Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:38Z' status: 200 OK code: 200 - duration: 301.335917ms - - id: 21 + duration: 72.282125ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -2361,10 +10683,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-de061bc?api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-de281c2?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -2381,11 +10703,11 @@ interactions: Content-Length: - "0" Date: - - Mon, 02 Feb 2026 23:51:21 GMT + - Thu, 09 Apr 2026 17:15:37 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRERTA2MUJDLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056731445664142&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=KaO8GdpnutegDm1XRfxdAkbcLXyyTXNQ7F9cPcVcE_CniP7ms7OwJ8G52mBF6K-c6XmMT0_b2dyyOW-4JV6cF-HLzPet7a1Hm0xzqTjN2_Uttk4Pc5_wmI7QmlIAg6cdGxwMnnzrgy6kEQJ7bZhv2G_ooce1xaXGULm4WU1PS26c7UxKnssqZLySmNw-hoSGXP980SEGxrAeCEZuIMA-tp24aeHPPWKH3_ebHBP5ypS25oXi2TICIduRM0_FELUxYR70LGma8GP1PT23WKJOJIHZofuSyWP7OtzzCKBXB8N4_uf2Q9ZX-rtOsVfgiMbpawVP4egqHyUBmi1mh7Tdqg&h=n4rx6qgs3Vh2gWm6cSXxEhtNbN9lyzGzF1cXoBa9ckk + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRERTI4MUMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113517988867154&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=oxcmFDc_6S-Bgeb6VboKyqZ2rszwJZ2GWTpuE4sXRMrq8sfYAUKoYVdntCqyLZICrDciP81jL66wx8wbFceYdIovWiZYh2Wv20hxQkwjMoxdSzQZF2HQu4ZzJwqbIs3Nfq9WtSp3k_LWadGF1DR07kb7gttqZfnx_AuDTdBzQMp2YoZJnswsL8Z0OZWvUtUtLzXBomNnDCka5Su0u6U5YP0FpVFq3fN7kz9VXxF4T4XMznSSvz-tP0VulSGGcU6EzsVwzb302Xe7K67rxVh1n79-nwyfGPXR_CUbN-U6U9JqLpl_6nBfnjQ9BYHZb0JMId83DkL9pa83v0wDW-rgSw&h=JwiL912ZFATENyZPaGhz_HwRK4x2H7ZFpw2NDk7c8FE Pragma: - no-cache Retry-After: @@ -2397,21 +10719,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - 2e548593-234a-43f7-8fda-039e4299a5a0 + - e2534e88-8a83-4bb6-a8d9-3cc1a6e4c9a4 X-Ms-Routing-Request-Id: - - EASTUS2:20260202T235122Z:2e548593-234a-43f7-8fda-039e4299a5a0 + - EASTUS2:20260409T171538Z:e2534e88-8a83-4bb6-a8d9-3cc1a6e4c9a4 X-Msedge-Ref: - - 'Ref A: 03B0E5D5279B44AA94CF70464F70800D Ref B: MWH011020807062 Ref C: 2026-02-02T23:51:22Z' + - 'Ref A: 9E22A5551E8E4CC6B6D8AD5529171642 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:15:38Z' status: 202 Accepted code: 202 - duration: 292.106833ms - - id: 22 + duration: 251.526125ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -2430,10 +10752,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRERTA2MUJDLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056731445664142&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=KaO8GdpnutegDm1XRfxdAkbcLXyyTXNQ7F9cPcVcE_CniP7ms7OwJ8G52mBF6K-c6XmMT0_b2dyyOW-4JV6cF-HLzPet7a1Hm0xzqTjN2_Uttk4Pc5_wmI7QmlIAg6cdGxwMnnzrgy6kEQJ7bZhv2G_ooce1xaXGULm4WU1PS26c7UxKnssqZLySmNw-hoSGXP980SEGxrAeCEZuIMA-tp24aeHPPWKH3_ebHBP5ypS25oXi2TICIduRM0_FELUxYR70LGma8GP1PT23WKJOJIHZofuSyWP7OtzzCKBXB8N4_uf2Q9ZX-rtOsVfgiMbpawVP4egqHyUBmi1mh7Tdqg&h=n4rx6qgs3Vh2gWm6cSXxEhtNbN9lyzGzF1cXoBa9ckk + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRERTI4MUMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113517988867154&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=oxcmFDc_6S-Bgeb6VboKyqZ2rszwJZ2GWTpuE4sXRMrq8sfYAUKoYVdntCqyLZICrDciP81jL66wx8wbFceYdIovWiZYh2Wv20hxQkwjMoxdSzQZF2HQu4ZzJwqbIs3Nfq9WtSp3k_LWadGF1DR07kb7gttqZfnx_AuDTdBzQMp2YoZJnswsL8Z0OZWvUtUtLzXBomNnDCka5Su0u6U5YP0FpVFq3fN7kz9VXxF4T4XMznSSvz-tP0VulSGGcU6EzsVwzb302Xe7K67rxVh1n79-nwyfGPXR_CUbN-U6U9JqLpl_6nBfnjQ9BYHZb0JMId83DkL9pa83v0wDW-rgSw&h=JwiL912ZFATENyZPaGhz_HwRK4x2H7ZFpw2NDk7c8FE method: GET response: proto: HTTP/2.0 @@ -2450,7 +10772,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 02 Feb 2026 23:52:39 GMT + - Thu, 09 Apr 2026 17:16:53 GMT Expires: - "-1" Pragma: @@ -2462,21 +10784,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c7479d89-92ed-479a-98c7-6e8cdf0de58e + - 04a682af-86ed-4e69-8ccf-411e48c23d88 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235240Z:c7479d89-92ed-479a-98c7-6e8cdf0de58e + - EASTUS2:20260409T171653Z:04a682af-86ed-4e69-8ccf-411e48c23d88 X-Msedge-Ref: - - 'Ref A: 3E41753CC54D4FCD9B7FECAE8CF4F98E Ref B: MWH011020807062 Ref C: 2026-02-02T23:52:39Z' + - 'Ref A: 7C30F8C07FF24BE09F964474DF20FC41 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:16:53Z' status: 200 OK code: 200 - duration: 448.838917ms - - id: 23 + duration: 85.841416ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -2497,10 +10819,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179?api-version=2021-04-01 + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2510,7 +10832,7 @@ interactions: trailer: {} content_length: 2801 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de061bc","azd-layer-name":"","azd-provision-param-hash":"124fe4db6a017f9e78781f0832aac4a806ee5895670b6c0e86ce7688057c5cc7"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-de061bc"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T00:50:00Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-02T23:50:35.5435628Z","duration":"PT34.52782S","correlationId":"985a21a76271d923ac4df6ee24a8f6ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de061bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stban7hrfzvz7v4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-de061bc/providers/Microsoft.Storage/storageAccounts/stban7hrfzvz7v4"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de281c2","azd-layer-name":"","azd-provision-param-hash":"4caac57938cd2f32ce211cee095ffa58af5767039febd22b5b986a83d0835071"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-de281c2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:14:22Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":["item1","item2"]},"objectValue":{"type":"Object","value":{"key":"value"}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:14:58.1896113Z","duration":"PT35.148644S","correlationId":"454133020af8c63f0442fbe14b967dbd","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de281c2"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuctm7tqtpzvkw"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":["item1","item2"]},"objecT_PARAM":{"type":"Object","value":{"key":"value"}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de281c2/providers/Microsoft.Storage/storageAccounts/stuctm7tqtpzvkw"}]}}' headers: Cache-Control: - no-cache @@ -2519,7 +10841,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 02 Feb 2026 23:52:39 GMT + - Thu, 09 Apr 2026 17:16:53 GMT Expires: - "-1" Pragma: @@ -2531,21 +10853,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f + - df567c54329d80d18dc4f664c672d11d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6a63898f-44bc-456c-a2f5-61925e2a6a3d + - 32580d6b-7277-46ea-b2c8-e98dcdae4d05 X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235240Z:6a63898f-44bc-456c-a2f5-61925e2a6a3d + - EASTUS2:20260409T171654Z:32580d6b-7277-46ea-b2c8-e98dcdae4d05 X-Msedge-Ref: - - 'Ref A: C366A2D61BD142C885E98D3FAC6BDC08 Ref B: MWH011020807062 Ref C: 2026-02-02T23:52:40Z' + - 'Ref A: 93C740DAFB6849AEB36D959BC96C93A0 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:16:54Z' status: 200 OK code: 200 - duration: 371.229875ms - - id: 24 + duration: 103.958792ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2556,7 +10878,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de061bc"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de281c2"}}' form: {} headers: Accept: @@ -2570,59 +10892,3479 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179?api-version=2021-04-01 - method: PUT + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 570 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de281c2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:16:54.3814613Z","duration":"PT0.0004732S","correlationId":"df567c54329d80d18dc4f664c672d11d","providers":[],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842/operationStatuses/08584258518710873578?api-version=2021-04-01&t=639113518145220822&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=uSDpevFKlQ2CvEwjyAfCv6a-heNTvCmTmIGxAY4GmiTH4RIGmxuqw5MDG7dq6TbOPKVYGzlarPr8k8TIiD3SFBWyMuO9j8Iyrh8f9AHWVsZlRpJ6_mN9VFrtFzZtDsJHBk0tr9vCS9M2PhF8hSqIRRXtwWF5WMp-m1dhzBGeoafxAWK2Y_9gsnCGO5Nf0H7ftgoVz5dN0QvKsZoMy8ZGwtZEJZyNoRM_pf0XOxrYZY7yOQia-eQ3HrZaz3WqAsayIRLw9-he9NjjCkDVPFF6kC5hs-9B-7FgvFPQVvCE45qwLOPFzV8MWqu0-E-U5KWveLtCJ2lHIsnpki7u1TgqVA&h=aMpgWfq6uGaTcemlB3x6muiwp3By54vul19xeFsiXas + Cache-Control: + - no-cache + Content-Length: + - "570" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:16:53 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 512fd614-1fb9-4566-a7c3-0cfbf82a2edd + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171654Z:512fd614-1fb9-4566-a7c3-0cfbf82a2edd + X-Msedge-Ref: + - 'Ref A: 42FFD4DB2E674FDB8004636A50E48D1A Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:16:54Z' + status: 200 OK + code: 200 + duration: 380.165583ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842/operationStatuses/08584258518710873578?api-version=2021-04-01&t=639113518145220822&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=uSDpevFKlQ2CvEwjyAfCv6a-heNTvCmTmIGxAY4GmiTH4RIGmxuqw5MDG7dq6TbOPKVYGzlarPr8k8TIiD3SFBWyMuO9j8Iyrh8f9AHWVsZlRpJ6_mN9VFrtFzZtDsJHBk0tr9vCS9M2PhF8hSqIRRXtwWF5WMp-m1dhzBGeoafxAWK2Y_9gsnCGO5Nf0H7ftgoVz5dN0QvKsZoMy8ZGwtZEJZyNoRM_pf0XOxrYZY7yOQia-eQ3HrZaz3WqAsayIRLw9-he9NjjCkDVPFF6kC5hs-9B-7FgvFPQVvCE45qwLOPFzV8MWqu0-E-U5KWveLtCJ2lHIsnpki7u1TgqVA&h=aMpgWfq6uGaTcemlB3x6muiwp3By54vul19xeFsiXas + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:17:24 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 5038645f-0ce0-474f-b6df-04c6e612a025 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171724Z:5038645f-0ce0-474f-b6df-04c6e612a025 + X-Msedge-Ref: + - 'Ref A: 6CDF6FB469DA459C99C0CB740A875EBE Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:17:24Z' + status: 200 OK + code: 200 + duration: 91.211166ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 604 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de281c2-1775754842","name":"azdtest-de281c2-1775754842","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de281c2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:16:54.847255Z","duration":"PT0.4657937S","correlationId":"df567c54329d80d18dc4f664c672d11d","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "604" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:17:24 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - df567c54329d80d18dc4f664c672d11d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7ac5eef8-1b14-4e55-ada7-901159b5ce4d + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171724Z:7ac5eef8-1b14-4e55-ada7-901159b5ce4d + X-Msedge-Ref: + - 'Ref A: 5102644604834B3D84C1A046811CA2D7 Ref B: BN1AA2051013033 Ref C: 2026-04-09T17:17:24Z' + status: 200 OK + code: 200 + duration: 73.34775ms + - id: 33 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 138770 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de061bc"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-02T23:52:40.89828Z","duration":"PT0.0002945S","correlationId":"7e4cc4923a806ba23b99759d3ae4445f","providers":[],"dependencies":[]}}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179/operationStatuses/08584315305245753898?api-version=2021-04-01&t=639056731632107606&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=E2IoquscXbnjfPGQNRfVGp5vnHq3RfTd0Edt7lGJzJdUzXaApJjU9Jp8rZocK90rHTXTkgvQ-EH3N4RAqkwFgocuFK1OunIN3gSflboTP9jed5R2MMEm5rZ--oPg9ncD99iFys8EXajpyTPy4Roj8lMO8vToSfzf-Mc7RAtQJVEUnu9kqV5V0_2eDp35NO6Oda0bhFocC60F5OFgG4VHA9UjGldk8CrxP15x7xwsLxXoqW0nVKmgwmBokrwjJSbMeRIAFA_KLonzKXSvqieCsagX8ILYyGM9XcyXagdgoJP0Z8hiV9iuqy2O4nWEZw4LTrbmLn1NxcxcNklw1cZyEg&h=HhbRYCrC7KFR0tYi8VT1sbS_t81xOofyScUuoVuaaAM + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "568" + - "138770" + 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: - - Mon, 02 Feb 2026 23:52:42 GMT + - Thu, 09 Apr 2026 17:17:25 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:22:25 GMT + Source-Age: + - "121" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - X-Ms-Deployment-Engine-Version: - - 1.568.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - c6bc1f5d-5622-4408-b5fc-b9d541f7e691 - X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235243Z:c6bc1f5d-5622-4408-b5fc-b9d541f7e691 - X-Msedge-Ref: - - 'Ref A: C0739AD946B843488B4AFCFEC58272FC Ref B: MWH011020807062 Ref C: 2026-02-02T23:52:40Z' + X-Fastly-Request-Id: + - 133e875023259f0377b2c0207e05b21b9a1de7c5 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760082-MIA + X-Timer: + - S1775755045.204013,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 2.750275417s - - id: 25 + duration: 205.936792ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2630,7 +14372,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -2641,55 +14383,45 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179/operationStatuses/08584315305245753898?api-version=2021-04-01&t=639056731632107606&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=E2IoquscXbnjfPGQNRfVGp5vnHq3RfTd0Edt7lGJzJdUzXaApJjU9Jp8rZocK90rHTXTkgvQ-EH3N4RAqkwFgocuFK1OunIN3gSflboTP9jed5R2MMEm5rZ--oPg9ncD99iFys8EXajpyTPy4Roj8lMO8vToSfzf-Mc7RAtQJVEUnu9kqV5V0_2eDp35NO6Oda0bhFocC60F5OFgG4VHA9UjGldk8CrxP15x7xwsLxXoqW0nVKmgwmBokrwjJSbMeRIAFA_KLonzKXSvqieCsagX8ILYyGM9XcyXagdgoJP0Z8hiV9iuqy2O4nWEZw4LTrbmLn1NxcxcNklw1cZyEg&h=HhbRYCrC7KFR0tYi8VT1sbS_t81xOofyScUuoVuaaAM + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 0 uncompressed: false - body: '{"status":"Succeeded"}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "22" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Mon, 02 Feb 2026 23:53:13 GMT + - Thu, 09 Apr 2026 17:17:25 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:17:25 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 65dd0f42-e73d-41e1-b35e-fe2bab139ea7 - X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235313Z:65dd0f42-e73d-41e1-b35e-fe2bab139ea7 - X-Msedge-Ref: - - 'Ref A: A5C6DE3BCA6E4AB0896BEF22C549BAAF Ref B: MWH011020807062 Ref C: 2026-02-02T23:53:13Z' - status: 200 OK - code: 200 - duration: 269.290667ms - - id: 26 + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 447.677917ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2697,7 +14429,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -2707,11 +14439,11 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179?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 @@ -2719,44 +14451,4339 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 195006 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-de061bc-1770076179","name":"azdtest-de061bc-1770076179","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de061bc"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-02T23:52:45.6349076Z","duration":"PT4.7366276S","correlationId":"7e4cc4923a806ba23b99759d3ae4445f","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + 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" + } + } + } + ] + }, + { + "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: - - "605" + - "195006" + 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: - - Mon, 02 Feb 2026 23:53:13 GMT + - Thu, 09 Apr 2026 17:17:25 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:22:25 GMT + Source-Age: + - "269" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 7e4cc4923a806ba23b99759d3ae4445f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - a60b0d69-d902-4cf4-a69d-4828201962a2 - X-Ms-Routing-Request-Id: - - WESTUS2:20260202T235314Z:a60b0d69-d902-4cf4-a69d-4828201962a2 - X-Msedge-Ref: - - 'Ref A: 807D3981C0BC4DE8A1B8E1EF1E0BE8DE Ref B: MWH011020807062 Ref C: 2026-02-02T23:53:14Z' + X-Fastly-Request-Id: + - 23fd5849de2d26ae4dae9b0bfcecb5a922343e74 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760082-MIA + X-Timer: + - S1775755046.700306,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 379.03375ms - - id: 27 + duration: 27.732959ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2775,7 +18802,7 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) url: https://aka.ms:443/azd/extensions/registry/dev method: GET response: @@ -2795,9 +18822,9 @@ interactions: Content-Length: - "0" Date: - - Mon, 02 Feb 2026 23:53:14 GMT + - Thu, 09 Apr 2026 17:17:25 GMT Expires: - - Mon, 02 Feb 2026 23:53:14 GMT + - Thu, 09 Apr 2026 17:17:25 GMT Location: - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json Pragma: @@ -2812,8 +18839,8 @@ interactions: - "True" status: 301 Moved Permanently code: 301 - duration: 392.024042ms - - id: 28 + duration: 130.812458ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2834,7 +18861,7 @@ interactions: Referer: - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json method: GET response: @@ -2849,220 +18876,628 @@ interactions: { "extensions": [ { - "id": "microsoft.azd.demo", - "namespace": "demo", - "displayName": "Demo Extension", - "description": "This extension provides examples of the AZD extension framework.", + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ { "capabilities": [ - "custom-commands", - "lifecycle-events" + "custom-commands" ], - "version": "0.1.0-beta.1", - "usage": "azd demo \u003ccommand\u003e [options]", + "version": "0.2.0", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "init", + "description": "Initialize a new AZD extension project.", + "usage": "azd x init" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "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 an 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": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + "value": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" } } }, { "capabilities": [ - "custom-commands", - "lifecycle-events" + "custom-commands" ], - "version": "0.2.0", - "usage": "azd demo \u003ccommand\u003e [options]", + "version": "0.3.0", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "init", + "description": "Initialize a new AZD extension project.", + "usage": "azd x init" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "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 an 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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + "value": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" }, - "entryPoint": "microsoft-azd-demo-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" }, - "entryPoint": "microsoft-azd-demo-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" }, - "entryPoint": "microsoft-azd-demo-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" }, - "entryPoint": "microsoft-azd-demo-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" }, - "entryPoint": "microsoft-azd-demo-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" }, - "entryPoint": "microsoft-azd-demo-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" } } - } - ] - }, - { - "id": "microsoft.azd.ai.builder", - "namespace": "ai", - "displayName": "AZD AI Builder", - "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", - "versions": [ + }, { "capabilities": [ "custom-commands" ], - "version": "0.1.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "version": "0.4.1", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "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 an 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": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + "value": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" } } }, @@ -3070,79 +19505,91 @@ interactions: "capabilities": [ "custom-commands" ], - "version": "0.2.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "version": "0.4.2", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "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 an 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": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "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": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "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": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + "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": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + "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": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + "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": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-arm64.zip" + "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" } } - } - ] - }, - { - "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": [ + }, { "capabilities": [ "custom-commands" ], - "version": "0.2.0", + "version": "0.5.0", "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { @@ -3160,9 +19607,14 @@ interactions: "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.", + "description": "Create an new release of the AZD extension project to a Github repository.", "usage": "azd x release" }, { @@ -3175,50 +19627,50 @@ interactions: "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" }, "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + "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": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" }, "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + "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": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" }, "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + "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": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" }, "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + "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": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" }, "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + "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": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" }, "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-arm64.zip" } } }, @@ -3226,7 +19678,7 @@ interactions: "capabilities": [ "custom-commands" ], - "version": "0.3.0", + "version": "0.5.1", "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { @@ -3244,9 +19696,14 @@ interactions: "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.", + "description": "Create an new release of the AZD extension project to a Github repository.", "usage": "azd x release" }, { @@ -3259,483 +19716,536 @@ interactions: "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" }, "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + "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": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" }, "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + "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": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" }, "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + "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": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" }, "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + "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": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" }, "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + "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": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" }, "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-arm64.zip" } } - }, + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:17:25 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:22:25 GMT + Source-Age: + - "121" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 24fc907e8c67ea6bb55dfe4dfaa3689566463bbe + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760082-MIA + X-Timer: + - S1775755046.890630,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 20.675833ms + - id: 38 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ { + "version": "0.1.1", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.4.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.1.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.4.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.0.5", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.4.2", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.0.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.5.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.0.1", "capabilities": [ "custom-commands" ], - "version": "0.5.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" } } } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" ] } ] @@ -3748,7 +20258,7 @@ interactions: Cache-Control: - max-age=300 Content-Length: - - "41722" + - "16828" Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: @@ -3756,13 +20266,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Mon, 02 Feb 2026 23:53:15 GMT + - Thu, 09 Apr 2026 17:17:25 GMT Etag: - - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - Mon, 02 Feb 2026 23:58:15 GMT + - Thu, 09 Apr 2026 17:22:25 GMT Source-Age: - - "128" + - "121" Strict-Transport-Security: - max-age=31536000 Vary: @@ -3776,21 +20286,21 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-Id: - - fb1e40156c530d7e858cd47803e5fe24a348f380 + - 3684f42bedab631909b1bd9a209c6b061dbb64dd X-Frame-Options: - deny X-Github-Request-Id: - - A3D2:201A04:1F269F:25CB00:6981386A + - E072:2F6A22:7FEE2:965AC:69D7C890 X-Served-By: - - cache-bfi-krnt7300049-BFI + - cache-mia-kmia1760082-MIA X-Timer: - - S1770076395.014058,VS0,VE4 + - S1775755046.921534,VS0,VE1 X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 - duration: 92.038917ms + duration: 15.401167ms --- -env_name: azdtest-de061bc -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1770076179" +env_name: azdtest-de281c2 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775754842" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.yaml index f46828ae3b2..c6d80e41b3d 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.yaml @@ -9,23 +9,19 @@ 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 User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -33,43 +29,3264 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 45193 + content_length: 138770 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Brazil","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Canary (US)","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "45193" + - "138770" + 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: - - Tue, 15 Apr 2025 17:41:22 GMT + - Thu, 09 Apr 2026 17:17:57 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:22:57 GMT + Source-Age: + - "153" 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: - - 5cdbe36b0ff7df64375245060c128d94 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 3dd13f75-2047-46b8-9857-a32b82028118 - X-Ms-Routing-Request-Id: - - WESTUS:20250415T174122Z:3dd13f75-2047-46b8-9857-a32b82028118 - X-Msedge-Ref: - - 'Ref A: 25E5B39967E7414EA77640342395DDE3 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:41:19Z' + X-Fastly-Request-Id: + - cc669dc350f8b316d02f5e436813f5588c1cc32c + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755077.204314,VS0,VE3 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 3.363334s + duration: 64.178834ms - id: 1 request: proto: HTTP/1.1 @@ -78,67 +3295,55 @@ 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.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?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/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1890757 + content_length: 0 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "1890757" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Tue, 15 Apr 2025 17:41:30 GMT + - Thu, 09 Apr 2026 17:17:57 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:17:57 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - fb8eb69e-d157-4e26-ae8f-3c7a4e782db6 - X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174130Z:fb8eb69e-d157-4e26-ae8f-3c7a4e782db6 - X-Msedge-Ref: - - 'Ref A: 9B835F1E4F554AB38A94A32F23D2EC76 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:41:23Z' - status: 200 OK - code: 200 - duration: 7.0370117s + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 121.203333ms - id: 2 request: proto: HTTP/1.1 @@ -147,7 +3352,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -157,11 +3362,11 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&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 @@ -169,43 +3374,4338 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1154756 + content_length: 195006 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + 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" + } + } + } + ] + }, + { + "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: - - "1154756" + - "195006" + 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: - - Tue, 15 Apr 2025 17:41:34 GMT + - Thu, 09 Apr 2026 17:17:57 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:22:57 GMT + Source-Age: + - "0" 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: - - 5cdbe36b0ff7df64375245060c128d94 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - fecfa6ed-bad9-4467-a955-83b5ca1bc5d5 - X-Ms-Routing-Request-Id: - - WESTUS:20250415T174134Z:fecfa6ed-bad9-4467-a955-83b5ca1bc5d5 - X-Msedge-Ref: - - 'Ref A: C8FDD6C7AEF544C4A8CA68EFD2DE7121 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:41:30Z' + X-Fastly-Request-Id: + - 0a783c6163b4b5e5d16caf199afd624ce866ae73 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755077.355096,VS0,VE37 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 4.6503131s + duration: 52.92925ms - id: 3 request: proto: HTTP/1.1 @@ -214,7 +7714,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -225,204 +7725,1504 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 0 uncompressed: false - body: '{"value":[]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "97962" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Tue, 15 Apr 2025 17:41:36 GMT + - Thu, 09 Apr 2026 17:17:57 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 17:17:57 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 978f8272-fa4a-4894-bd74-bb5b2a25a7a9 - X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174136Z:978f8272-fa4a-4894-bd74-bb5b2a25a7a9 - X-Msedge-Ref: - - 'Ref A: 0E392595B321480D9404CA69AC271BC2 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:41:35Z' - status: 200 OK - code: 200 - duration: 1.4935044s + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 17.969459ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4509 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"UpperCaseazdtest-w7fcbee","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.35.1.8038","templateHash":"761471799464656379"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-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.35.1.8038","templateHash":"12834001296681164846"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4509" - Content-Type: - - application/json + Referer: + - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873/validate?api-version=2021-04-01 - method: POST + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2103 + content_length: 41722 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"properties":{"templateHash":"761471799464656379","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:36Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:41:36.9693415Z","duration":"PT0S","correlationId":"5cdbe36b0ff7df64375245060c128d94","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-w7fcbee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}]}}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "2103" + - "41722" + 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: - - Tue, 15 Apr 2025 17:41:38 GMT + - Thu, 09 Apr 2026 17:17:57 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:22:57 GMT + Source-Age: + - "152" 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: - - 5cdbe36b0ff7df64375245060c128d94 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - bdbedab9-a344-43cc-b129-e65463fc70d3 - X-Ms-Routing-Request-Id: - - WESTUS:20250415T174138Z:bdbedab9-a344-43cc-b129-e65463fc70d3 - X-Msedge-Ref: - - 'Ref A: 746ED1B491974FE88E2A80E1DD8BB82A Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:41:36Z' + X-Fastly-Request-Id: + - 8a17ffda66b063ee45e9a7f787500b044c634e6c + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755077.439261,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 2.0902845s + duration: 12.843083ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4509 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"UpperCaseazdtest-w7fcbee","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.35.1.8038","templateHash":"761471799464656379"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-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.35.1.8038","templateHash":"12834001296681164846"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4509" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 - method: PUT + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1663 + content_length: 16828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"properties":{"templateHash":"761471799464656379","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-15T17:41:39.2265455Z","duration":"PT0.0004904S","correlationId":"5cdbe36b0ff7df64375245060c128d94","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-w7fcbee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873/operationStatuses/08584568679862382277?api-version=2021-04-01&t=638803357028828361&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=uhK2qjRgjyhOV6GcG7lFSIjd2gvnj9IVbaLxumXkf_KtPOeFqsIBDlRhwaban77_VF5dU1PNEjGsngvwoY2gCWm5w7IdbiZhaMmvH4YNH-ihDUs3GHsowm0TTUSl_FKL7jVbhceqWsP6RENgT09j4_vaY3HhCL3KfboYkgoD6xGxCP_WFZd_GJkoe3VeNHBCEPKoOlxBvoJhQJYbYYijTt1f0KWosDcLGY1Jr75iM2Mjw6V1PvGKC1Z034dVD8z99y8fDpguIp2S4ld-dt_ftIrY8TJZVRUU4v8OIndTlBZ0JfDfsA2cE4fAxJaKAP7vo0w6MHxnvANraBhj0JkZKQ&h=rSVDkhJ_0KFrgROuxp05fZrqIts3fsRxdpHc1Kv1vcQ + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "1663" + - "16828" + 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: - - Tue, 15 Apr 2025 17:41:42 GMT + - Thu, 09 Apr 2026 17:17:57 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 17:22:57 GMT + Source-Age: + - "152" 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: - - 5cdbe36b0ff7df64375245060c128d94 - X-Ms-Deployment-Engine-Version: - - 1.309.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - b93e447a-74c1-4e8b-baed-118295b08284 - X-Ms-Routing-Request-Id: - - WESTUS:20250415T174143Z:b93e447a-74c1-4e8b-baed-118295b08284 - X-Msedge-Ref: - - 'Ref A: 90A3807C9D7D4650BFCB9A5E6A964D72 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:41:38Z' - status: 201 Created - code: 201 - duration: 4.2519511s + X-Fastly-Request-Id: + - d279ba369aca7ad8f02c60ae51a852db5f0954c4 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755077.459850,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.2975ms - id: 6 request: proto: HTTP/1.1 @@ -437,15 +9237,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873/operationStatuses/08584568679862382277?api-version=2021-04-01&t=638803357028828361&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=uhK2qjRgjyhOV6GcG7lFSIjd2gvnj9IVbaLxumXkf_KtPOeFqsIBDlRhwaban77_VF5dU1PNEjGsngvwoY2gCWm5w7IdbiZhaMmvH4YNH-ihDUs3GHsowm0TTUSl_FKL7jVbhceqWsP6RENgT09j4_vaY3HhCL3KfboYkgoD6xGxCP_WFZd_GJkoe3VeNHBCEPKoOlxBvoJhQJYbYYijTt1f0KWosDcLGY1Jr75iM2Mjw6V1PvGKC1Z034dVD8z99y8fDpguIp2S4ld-dt_ftIrY8TJZVRUU4v8OIndTlBZ0JfDfsA2cE4fAxJaKAP7vo0w6MHxnvANraBhj0JkZKQ&h=rSVDkhJ_0KFrgROuxp05fZrqIts3fsRxdpHc1Kv1vcQ + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -453,18 +9255,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 47870 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:13 GMT + - Thu, 09 Apr 2026 17:17:59 GMT Expires: - "-1" Pragma: @@ -476,20 +9278,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b3073187-4ebd-43f6-85d0-b474a32396dc + - 7262b866-69fe-4321-b497-5d42c46b971b X-Ms-Routing-Request-Id: - - WESTUS:20250415T174213Z:b3073187-4ebd-43f6-85d0-b474a32396dc + - EASTUS:20260409T171800Z:7262b866-69fe-4321-b497-5d42c46b971b X-Msedge-Ref: - - 'Ref A: 48B1588CA1884F4395D25A6AF6F95E3E Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:13Z' + - 'Ref A: C22E837129814A57BD931F519260C9FB Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:17:59Z' status: 200 OK code: 200 - duration: 279.6936ms + duration: 1.019994792s - id: 7 request: proto: HTTP/1.1 @@ -504,15 +9306,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -520,18 +9324,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2645 + content_length: 960970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"properties":{"templateHash":"761471799464656379","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:08.9181726Z","duration":"PT29.6916271S","correlationId":"5cdbe36b0ff7df64375245060c128d94","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-w7fcbee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stkkxlqz456576a"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2645" + - "960970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:13 GMT + - Thu, 09 Apr 2026 17:18:03 GMT Expires: - "-1" Pragma: @@ -543,20 +9347,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d6cfe0dd-206d-47c0-a884-86469b117de7 + - ee78a053-a459-460f-ae07-aad6986f0920 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174213Z:d6cfe0dd-206d-47c0-a884-86469b117de7 + - EASTUS2:20260409T171804Z:ee78a053-a459-460f-ae07-aad6986f0920 X-Msedge-Ref: - - 'Ref A: 7047E9C4F182450EB57EC3D5D60F6485 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:13Z' + - 'Ref A: CE6B38A24DFB4C46ABD0804CE40F0202 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:00Z' status: 200 OK code: 200 - duration: 252.4745ms + duration: 3.829634s - id: 8 request: proto: HTTP/1.1 @@ -571,17 +9375,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -589,18 +9391,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906894 + content_length: 845051 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","location":"eastus2","name":"UpperCaseazdtest-w7fcbee-1744738873","properties":{"correlationId":"5cdbe36b0ff7df64375245060c128d94","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceName":"rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT29.6916271S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stkkxlqz456576a"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"761471799464656379","timestamp":"2025-04-15T17:42:08.9181726Z"},"tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1906894" + - "845051" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:22 GMT + - Thu, 09 Apr 2026 17:18:07 GMT Expires: - "-1" Pragma: @@ -612,20 +9414,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - cfaf578f-5ab6-461f-a5e6-ebecde70066a + - 7b1cfbfa-39e9-4d28-ba08-407377644acf X-Ms-Routing-Request-Id: - - WESTUS:20250415T174222Z:cfaf578f-5ab6-461f-a5e6-ebecde70066a + - EASTUS:20260409T171808Z:7b1cfbfa-39e9-4d28-ba08-407377644acf X-Msedge-Ref: - - 'Ref A: ACCBE3FE86DD466A91172D4599E1CFD9 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:13Z' + - 'Ref A: AD9BE5DFFC3849899FDC639FAEA54576 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:05Z' status: 200 OK code: 200 - duration: 9.0194476s + duration: 3.2541565s - id: 9 request: proto: HTTP/1.1 @@ -645,10 +9447,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -656,18 +9458,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1154756 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1154756" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:29 GMT + - Thu, 09 Apr 2026 17:18:08 GMT Expires: - "-1" Pragma: @@ -679,20 +9481,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e7e05cc3-22a9-40a7-be2a-e203521e26a1 + - 5159116e-7fc2-43b6-8ce0-146df703a6e0 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174229Z:e7e05cc3-22a9-40a7-be2a-e203521e26a1 + - EASTUS:20260409T171809Z:5159116e-7fc2-43b6-8ce0-146df703a6e0 X-Msedge-Ref: - - 'Ref A: 441F1AA7925247F59EC166ED42C676B6 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:23Z' + - 'Ref A: 1087DDCBC4C147798457645AED217EC9 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:08Z' status: 200 OK code: 200 - duration: 6.7630671s + duration: 1.436227916s - id: 10 request: proto: HTTP/1.1 @@ -712,10 +9514,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -723,18 +9525,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "97962" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:31 GMT + - Thu, 09 Apr 2026 17:18:09 GMT Expires: - "-1" Pragma: @@ -746,20 +9548,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 05a6b03d-395b-44e9-a650-c90f96f1f627 + - 785bb3f1-aa6a-4484-87ff-c5eb0b5c81a5 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174231Z:05a6b03d-395b-44e9-a650-c90f96f1f627 + - EASTUS:20260409T171810Z:785bb3f1-aa6a-4484-87ff-c5eb0b5c81a5 X-Msedge-Ref: - - 'Ref A: 716FCCE91C594D84A95CAEC2EB714100 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:30Z' + - 'Ref A: 6E7E8AE23F3D49D4B3620E8E630231F1 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:09Z' status: 200 OK code: 200 - duration: 1.5033514s + duration: 778.378375ms - id: 11 request: proto: HTTP/1.1 @@ -774,17 +9576,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -792,18 +9592,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2645 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"properties":{"templateHash":"761471799464656379","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:08.9181726Z","duration":"PT29.6916271S","correlationId":"5cdbe36b0ff7df64375245060c128d94","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-w7fcbee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stkkxlqz456576a"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2645" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:31 GMT + - Thu, 09 Apr 2026 17:18:10 GMT Expires: - "-1" Pragma: @@ -815,32 +9615,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5cdbe36b0ff7df64375245060c128d94 + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 258470ea-07fa-4e9f-ae65-a36c5d3f5944 + - 6f6ea59b-1e62-4b6f-ad98-50d3806fce88 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174231Z:258470ea-07fa-4e9f-ae65-a36c5d3f5944 + - EASTUS:20260409T171811Z:6f6ea59b-1e62-4b6f-ad98-50d3806fce88 X-Msedge-Ref: - - 'Ref A: 410C780AB8744944B63D4E1B07B825F8 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:31Z' + - 'Ref A: FC7E15C380C14C99A8F4503342E381F3 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:10Z' status: 200 OK code: 200 - duration: 219.6696ms + duration: 446.485625ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5053 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"UpperCaseazdtest-db377d0","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"}}' form: {} headers: Accept: @@ -849,28 +9649,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "5053" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-w7fcbee%27&api-version=2021-04-01 - method: GET + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2208 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","name":"rg-UpperCaseazdtest-w7fcbee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","DeleteAfter":"2025-04-15T18:41:39Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:12Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:18:12.7638608Z","duration":"PT0S","correlationId":"27e2706c9c175e5f60c1ee73ca250911","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-db377d0"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "423" + - "2208" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:32 GMT + - Thu, 09 Apr 2026 17:18:12 GMT Expires: - "-1" Pragma: @@ -882,32 +9688,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52312e55-22d6-4f73-9b64-f75629b5231c - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 27e2706c9c175e5f60c1ee73ca250911 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 52312e55-22d6-4f73-9b64-f75629b5231c + - 8ce95e10-7e19-4265-b324-4c744e2a12bf X-Ms-Routing-Request-Id: - - WESTUS:20250415T174232Z:52312e55-22d6-4f73-9b64-f75629b5231c + - EASTUS:20260409T171813Z:8ce95e10-7e19-4265-b324-4c744e2a12bf X-Msedge-Ref: - - 'Ref A: B64B3776E3B84B879900E9A676211558 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:32Z' + - 'Ref A: DA1D18C10AC44B26BB47FC2C5A357428 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:12Z' status: 200 OK code: 200 - duration: 85.5555ms + duration: 1.090779583s - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5053 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"UpperCaseazdtest-db377d0","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"}}' form: {} headers: Accept: @@ -916,30 +9722,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "5053" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 - method: GET + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1909761 + content_length: 1768 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","location":"eastus2","name":"UpperCaseazdtest-w7fcbee-1744738873","properties":{"correlationId":"5cdbe36b0ff7df64375245060c128d94","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceName":"rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT29.6916271S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stkkxlqz456576a"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"761471799464656379","timestamp":"2025-04-15T17:42:08.9181726Z"},"tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:18:13.9087128Z","duration":"PT0.0001382S","correlationId":"27e2706c9c175e5f60c1ee73ca250911","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-db377d0"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075/operationStatuses/08584258517915681008?api-version=2021-04-01&t=639113518945806806&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=gf8vnfEcptwctA6vLkHI7kks2BTyADE-YbR7fowVO_Nu_dlu_p5t8FKlIa9WDJfYH6B11mxxEQD336kRabBVqZVffa8IQmMInHNKF4aY2sE49T56enadJeTvC7xbvAlJVEGQTXvI2Mgpg8APU7XL66wQy4lqF23Zz6K5HKDicpJq73rNUnYfiRqIcYVPoaQvH3yBar37_RgSsnT9WSp7izUWGo3fz-yN0ph1Q-z1Y8TKgju5RYFyQ0aZM7VMHO_T0AtLlbPNXoYE3bEBZcLo3t-3oQ-q9vS-cBH2p1mZCqN0AJLFDJF57Jqm_uPu9vYhgnLhsWm6ffhIUGVH8bxQMQ&h=sHs-8u-SsJRk3i4NCy351YvG9gtIUObV12CeDlJ8nRo Cache-Control: - no-cache Content-Length: - - "1909761" + - "1768" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:45 GMT + - Thu, 09 Apr 2026 17:18:13 GMT Expires: - "-1" Pragma: @@ -951,20 +9763,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - 27e2706c9c175e5f60c1ee73ca250911 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 33c4681e-9ecc-486a-9d1f-a7a7ebad4ecb + - 99291883-192e-42d8-bea2-0495afb55abe X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174245Z:33c4681e-9ecc-486a-9d1f-a7a7ebad4ecb + - EASTUS:20260409T171814Z:99291883-192e-42d8-bea2-0495afb55abe X-Msedge-Ref: - - 'Ref A: 8BAFA10E62D3403FAEACB7A9B282F25D Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:36Z' - status: 200 OK - code: 200 - duration: 8.4605043s + - 'Ref A: 230A60C4D9A348258B2E540DD25A9396 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:13Z' + status: 201 Created + code: 201 + duration: 1.04572675s - id: 14 request: proto: HTTP/1.1 @@ -984,10 +9798,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075/operationStatuses/08584258517915681008?api-version=2021-04-01&t=639113518945806806&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=gf8vnfEcptwctA6vLkHI7kks2BTyADE-YbR7fowVO_Nu_dlu_p5t8FKlIa9WDJfYH6B11mxxEQD336kRabBVqZVffa8IQmMInHNKF4aY2sE49T56enadJeTvC7xbvAlJVEGQTXvI2Mgpg8APU7XL66wQy4lqF23Zz6K5HKDicpJq73rNUnYfiRqIcYVPoaQvH3yBar37_RgSsnT9WSp7izUWGo3fz-yN0ph1Q-z1Y8TKgju5RYFyQ0aZM7VMHO_T0AtLlbPNXoYE3bEBZcLo3t-3oQ-q9vS-cBH2p1mZCqN0AJLFDJF57Jqm_uPu9vYhgnLhsWm6ffhIUGVH8bxQMQ&h=sHs-8u-SsJRk3i4NCy351YvG9gtIUObV12CeDlJ8nRo method: GET response: proto: HTTP/2.0 @@ -995,18 +9809,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1154756 + content_length: 22 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "1154756" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:49 GMT + - Thu, 09 Apr 2026 17:18:43 GMT Expires: - "-1" Pragma: @@ -1018,20 +9832,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bf6c93af-befa-444b-8f85-75ee80fde79d + - 08411643-79d3-43ca-b7b6-0d3bf6a432cc X-Ms-Routing-Request-Id: - - WESTUS:20250415T174249Z:bf6c93af-befa-444b-8f85-75ee80fde79d + - EASTUS:20260409T171844Z:08411643-79d3-43ca-b7b6-0d3bf6a432cc X-Msedge-Ref: - - 'Ref A: 02DC29B9810D4784A157B0715E481421 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:45Z' + - 'Ref A: 359ED9F1CFC24C6F9B59A9B316A311FA Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:44Z' status: 200 OK code: 200 - duration: 4.2180397s + duration: 155.5475ms - id: 15 request: proto: HTTP/1.1 @@ -1051,10 +9865,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1062,18 +9876,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 2836 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:18:42.9487864Z","duration":"PT29.0400736S","correlationId":"27e2706c9c175e5f60c1ee73ca250911","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-db377d0"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stlnhemacbwhdq4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "97962" + - "2836" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:51 GMT + - Thu, 09 Apr 2026 17:18:44 GMT Expires: - "-1" Pragma: @@ -1085,20 +9899,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - eef838ab-3da4-4ee2-9e51-93e37ed404ed + - b66778d5-64dd-4b10-8f98-bd894d899980 X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174251Z:eef838ab-3da4-4ee2-9e51-93e37ed404ed + - EASTUS2:20260409T171844Z:b66778d5-64dd-4b10-8f98-bd894d899980 X-Msedge-Ref: - - 'Ref A: 9D1E695D186A4A3DB705CB73A760C5E0 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:49Z' + - 'Ref A: E9B88247E4824B818550BA3FB8646838 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:44Z' status: 200 OK code: 200 - duration: 1.7191894s + duration: 117.950416ms - id: 16 request: proto: HTTP/1.1 @@ -1120,10 +9934,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1131,18 +9945,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2645 + content_length: 963807 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"properties":{"templateHash":"761471799464656379","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:08.9181726Z","duration":"PT29.6916271S","correlationId":"5cdbe36b0ff7df64375245060c128d94","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-w7fcbee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stkkxlqz456576a"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","location":"eastus2","name":"UpperCaseazdtest-db377d0-1775755075","properties":{"correlationId":"27e2706c9c175e5f60c1ee73ca250911","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceName":"rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT29.0400736S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stlnhemacbwhdq4"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:18:42.9487864Z"},"tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2645" + - "963807" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:51 GMT + - Thu, 09 Apr 2026 17:18:47 GMT Expires: - "-1" Pragma: @@ -1154,20 +9968,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 03c6626a-987d-4aa8-a7be-9ca41714af5c + - 8491f298-2c39-4fe0-97a6-1159f7334e78 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250415T174251Z:03c6626a-987d-4aa8-a7be-9ca41714af5c + - EASTUS:20260409T171848Z:8491f298-2c39-4fe0-97a6-1159f7334e78 X-Msedge-Ref: - - 'Ref A: C0D1E0C188EF44CEBE4244A4E4DD0BF4 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:51Z' + - 'Ref A: 392892E49636483C88F23CE448CCEB75 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:45Z' status: 200 OK code: 200 - duration: 353.5929ms + duration: 3.719160416s - id: 17 request: proto: HTTP/1.1 @@ -1182,17 +9996,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-w7fcbee%27&api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1200,18 +10012,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 845051 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","name":"rg-UpperCaseazdtest-w7fcbee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","DeleteAfter":"2025-04-15T18:41:39Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "423" + - "845051" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:51 GMT + - Thu, 09 Apr 2026 17:18:50 GMT Expires: - "-1" Pragma: @@ -1223,20 +10035,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5a4db4fd-2eea-44c1-b589-d590a3006131 + - 6c6267d6-ef81-4655-8ef0-4612539eb660 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250415T174251Z:5a4db4fd-2eea-44c1-b589-d590a3006131 + - EASTUS2:20260409T171851Z:6c6267d6-ef81-4655-8ef0-4612539eb660 X-Msedge-Ref: - - 'Ref A: 93A358523D254030B424C7560327D947 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:51Z' + - 'Ref A: A2D1E5353F6E4BADBB8BF02B2367861E Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:48Z' status: 200 OK code: 200 - duration: 72.6635ms + duration: 2.615798167s - id: 18 request: proto: HTTP/1.1 @@ -1251,17 +10063,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/resources?api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1269,18 +10079,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 515084 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a","name":"stkkxlqz456576a","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "382" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:52 GMT + - Thu, 09 Apr 2026 17:18:52 GMT Expires: - "-1" Pragma: @@ -1292,20 +10102,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 208f355f-58ac-4508-95b9-0d6a694d3a9a + - dd896c54-74ed-4210-bbbb-162425f34a34 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250415T174252Z:208f355f-58ac-4508-95b9-0d6a694d3a9a + - EASTUS:20260409T171853Z:dd896c54-74ed-4210-bbbb-162425f34a34 X-Msedge-Ref: - - 'Ref A: 1D8DB02DF4EB43EBA4C766EA0C253B97 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:52Z' + - 'Ref A: 4D3539889C2745C6A412C6888A9ABB17 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:51Z' status: 200 OK code: 200 - duration: 162.2638ms + duration: 1.473282542s - id: 19 request: proto: HTTP/1.1 @@ -1320,17 +10130,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1338,18 +10146,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2645 + content_length: 415580 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"properties":{"templateHash":"761471799464656379","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:08.9181726Z","duration":"PT29.6916271S","correlationId":"5cdbe36b0ff7df64375245060c128d94","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-w7fcbee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stkkxlqz456576a"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2645" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:52 GMT + - Thu, 09 Apr 2026 17:18:53 GMT Expires: - "-1" Pragma: @@ -1361,20 +10169,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 412a157a-97c4-45d4-8117-b623b5c852f7 + - e5458d01-23d5-44b7-8890-49ec2bddffd2 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174252Z:412a157a-97c4-45d4-8117-b623b5c852f7 + - EASTUS:20260409T171853Z:e5458d01-23d5-44b7-8890-49ec2bddffd2 X-Msedge-Ref: - - 'Ref A: 29E9FD0124CD4B449F1FEA71A1D95797 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:52Z' + - 'Ref A: 26252CD04B1D4F059635410C06E3D948 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:53Z' status: 200 OK code: 200 - duration: 200.4844ms + duration: 932.662042ms - id: 20 request: proto: HTTP/1.1 @@ -1389,17 +10197,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-w7fcbee%27&api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1407,18 +10213,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 136970 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","name":"rg-UpperCaseazdtest-w7fcbee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","DeleteAfter":"2025-04-15T18:41:39Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "423" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:52 GMT + - Thu, 09 Apr 2026 17:18:53 GMT Expires: - "-1" Pragma: @@ -1430,20 +10236,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6c62315a-944a-4ead-8cb2-d6e777d29098 + - 851c245b-b63a-43cd-b833-107f382f4225 X-Ms-Routing-Request-Id: - - CENTRALUS:20250415T174252Z:6c62315a-944a-4ead-8cb2-d6e777d29098 + - EASTUS2:20260409T171854Z:851c245b-b63a-43cd-b833-107f382f4225 X-Msedge-Ref: - - 'Ref A: CE3B44098CCD44708B4FDB904D377AFB Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:52Z' + - 'Ref A: 668586D52E4043ECA5DB6CF5B1E6703C Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:54Z' status: 200 OK code: 200 - duration: 115.5763ms + duration: 786.987833ms - id: 21 request: proto: HTTP/1.1 @@ -1465,10 +10271,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/resources?api-version=2021-04-01 + - 27e2706c9c175e5f60c1ee73ca250911 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1476,18 +10282,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 2836 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a","name":"stkkxlqz456576a","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:18:42.9487864Z","duration":"PT29.0400736S","correlationId":"27e2706c9c175e5f60c1ee73ca250911","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-db377d0"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stlnhemacbwhdq4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "382" + - "2836" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:42:52 GMT + - Thu, 09 Apr 2026 17:18:54 GMT Expires: - "-1" Pragma: @@ -1499,20 +10305,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 27e2706c9c175e5f60c1ee73ca250911 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3bb30c50-83ac-4958-b6a5-d193eaece03f + - ebeebdc1-5e68-4226-8492-6804546890bf X-Ms-Routing-Request-Id: - - WESTUS2:20250415T174252Z:3bb30c50-83ac-4958-b6a5-d193eaece03f + - EASTUS2:20260409T171854Z:ebeebdc1-5e68-4226-8492-6804546890bf X-Msedge-Ref: - - 'Ref A: 8C90AB4A56864FF3BBEBD68CED21B054 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:52Z' + - 'Ref A: 18CE1F2A8D3942A6828347DD8684CD0C Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:54Z' status: 200 OK code: 200 - duration: 196.4114ms + duration: 99.115959ms - id: 22 request: proto: HTTP/1.1 @@ -1521,70 +10327,19194 @@ 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 User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-UpperCaseazdtest-w7fcbee?api-version=2021-04-01 - method: DELETE + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 138770 uncompressed: false - body: "" + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "0" + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin Date: - - Tue, 15 Apr 2025 17:42:53 GMT + - Thu, 09 Apr 2026 17:18:55 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkRXN0ZDQkVFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638803358349630869&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=XrAlZsgKBNliohUzQa41nr0Eal8YwXD7F9u3qoVJ46vqXSGNCUCCtK_JmimnbaU2_3uWAIsF2qLvWu45oEHwQWEg7UEDBOHlYwVDhHJj0LGvyjMOpD3Js1t3n0chPTLFF7vCkRQJilATJnV1uPBA5bTZJNKB1Uw1XZR6IcISZhUhx0ujqiQyDF93wTiJW8BjUYbtqhuK3hopclV1obeoheZJ05-Cyw0h-BdTvi5HXDV3Hk9gGMKhcsc4M5k67-pu8hVZrJinDydqgfcdJ46jV8jRm1c5PGXUYfhUO7uXZQ7vjV43w385gM8GPGxE7jJZ62eNJGXgXWHBXNf42XBCAw&h=A_g7fFfT4NfV4SRM7de15OsrK_PjpavRqv_0yPY0H40 - Pragma: - - no-cache - Retry-After: - - "0" + - Thu, 09 Apr 2026 17:23:55 GMT + Source-Age: + - "211" 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: - - 23a71f5d6e22c5155da1b86236532dbe - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "799" - X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "11999" - X-Ms-Request-Id: - - e36e506b-b141-4ae6-adc4-2686f0784051 - X-Ms-Routing-Request-Id: - - WESTUS:20250415T174253Z:e36e506b-b141-4ae6-adc4-2686f0784051 - X-Msedge-Ref: - - 'Ref A: F34D0FB0FA934021B26E903852843986 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:42:52Z' - status: 202 Accepted - code: 202 - duration: 1.054738s + X-Fastly-Request-Id: + - 52a9b231fde62a331b9bc12c35178bdcdba4722e + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755135.107268,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.86025ms - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:18:55 GMT + Expires: + - Thu, 09 Apr 2026 17:18:55 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: 20.218958ms + - id: 24 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:18:55 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:23:55 GMT + Source-Age: + - "58" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 918ce60adfccc8c550724eea4eb953f772e832b5 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755135.159727,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 15.571875ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:18:55 GMT + Expires: + - Thu, 09 Apr 2026 17:18:55 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 38.757167ms + - id: 26 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:18:55 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:23:55 GMT + Source-Age: + - "210" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 5bfd99a2e1c63647b1bfb39ab8cd11874ed7d68c + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755135.227568,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 11.2735ms + - id: 27 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:18:55 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:23:55 GMT + Source-Age: + - "210" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 0b296ffe341fbe7679d33d8360417b8b2b1a967a + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755135.248818,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 13.5475ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin) + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-db377d0%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 456 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","name":"rg-UpperCaseazdtest-db377d0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","DeleteAfter":"2026-04-09T18:18:13Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "456" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:18:55 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 324a726d-4712-4ea3-b395-62fa6722bf94 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 324a726d-4712-4ea3-b395-62fa6722bf94 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171855Z:324a726d-4712-4ea3-b395-62fa6722bf94 + X-Msedge-Ref: + - 'Ref A: 8F6B014FA38F4338942AD3616A96772B Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:55Z' + status: 200 OK + code: 200 + duration: 326.517833ms + - id: 29 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:18:56 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:23:56 GMT + Source-Age: + - "212" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 9ec9c9464cccee719e63351eb569ced972b26faf + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755136.068829,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.492375ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:18:56 GMT + Expires: + - Thu, 09 Apr 2026 17:18:56 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: 17.8865ms + - id: 31 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:18:56 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:23:56 GMT + Source-Age: + - "59" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 0b757e8023ef33b0823fe124981594d35cdf2e1d + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755136.121025,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.243333ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:18:56 GMT + Expires: + - Thu, 09 Apr 2026 17:18:56 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 84.477417ms + - id: 33 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:18:56 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:23:56 GMT + Source-Age: + - "211" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - cd1a3c51aa4e05835a8e76d9d6f713744e9db701 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755136.247327,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.69275ms + - id: 34 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:18:56 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:23:56 GMT + Source-Age: + - "211" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "3" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 4c0e238daa67862609580a4a3baf8272185d688f + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775755136.273107,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 15.119ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 963807 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","location":"eastus2","name":"UpperCaseazdtest-db377d0-1775755075","properties":{"correlationId":"27e2706c9c175e5f60c1ee73ca250911","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceName":"rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT29.0400736S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stlnhemacbwhdq4"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:18:42.9487864Z"},"tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "963807" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:00 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 215c37e0-04f7-4799-b1d8-a842df02f8d1 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171901Z:215c37e0-04f7-4799-b1d8-a842df02f8d1 + X-Msedge-Ref: + - 'Ref A: F89F87B488734A558A38A52DFB0E6758 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:18:58Z' + status: 200 OK + code: 200 + duration: 3.663672s + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 845051 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "845051" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:04 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - fb530657-ca61-4f14-ab56-afb655303a75 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T171905Z:fb530657-ca61-4f14-ab56-afb655303a75 + X-Msedge-Ref: + - 'Ref A: 02131BC38FFF464A87E36C0BA5C128A0 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:01Z' + status: 200 OK + code: 200 + duration: 3.572994375s + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 515084 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "515084" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:06 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 816ca48d-e949-4d2b-9896-70838684a4e6 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171906Z:816ca48d-e949-4d2b-9896-70838684a4e6 + X-Msedge-Ref: + - 'Ref A: B3DA020895224ACD90A98891BA33237B Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:05Z' + status: 200 OK + code: 200 + duration: 1.563710041s + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a286abf2-36c3-4661-b24c-846dc94f7858 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T171907Z:a286abf2-36c3-4661-b24c-846dc94f7858 + X-Msedge-Ref: + - 'Ref A: 34037689ECF84C158F7EE3607F59D68F Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:07Z' + status: 200 OK + code: 200 + duration: 952.56ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 087035a7-6c16-40ce-b265-c6f9671284af + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171908Z:087035a7-6c16-40ce-b265-c6f9671284af + X-Msedge-Ref: + - 'Ref A: 29E981629DD8476B812E74BB29EC64E9 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:08Z' + status: 200 OK + code: 200 + duration: 426.948583ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2836 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:18:42.9487864Z","duration":"PT29.0400736S","correlationId":"27e2706c9c175e5f60c1ee73ca250911","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-db377d0"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stlnhemacbwhdq4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2836" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 04d0e0b1-2b7f-419c-b681-fe56b2d51e28 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T171908Z:04d0e0b1-2b7f-419c-b681-fe56b2d51e28 + X-Msedge-Ref: + - 'Ref A: 33C7D6901A7F4D6EBCB7A7A8E6A1EA26 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:08Z' + status: 200 OK + code: 200 + duration: 161.13125ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 382 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4","name":"stlnhemacbwhdq4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "382" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 95d38c65-10e6-4cdd-a4d8-83a73926b34e + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171908Z:95d38c65-10e6-4cdd-a4d8-83a73926b34e + X-Msedge-Ref: + - 'Ref A: 94D014FF7E6C488F9AAF01136D3735D9 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:08Z' + status: 200 OK + code: 200 + duration: 76.005792ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2836 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:18:42.9487864Z","duration":"PT29.0400736S","correlationId":"27e2706c9c175e5f60c1ee73ca250911","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-db377d0"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stlnhemacbwhdq4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2836" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 887fd47c-04ca-4acb-8f7c-396b0f97c395 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171908Z:887fd47c-04ca-4acb-8f7c-396b0f97c395 + X-Msedge-Ref: + - 'Ref A: 4E0A04965A6F4531871F6682C55F4FB1 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:08Z' + status: 200 OK + code: 200 + duration: 106.014ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 382 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4","name":"stlnhemacbwhdq4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "382" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:19:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - dbecbe12-dea3-453a-996b-d8d006f4fb13 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171909Z:dbecbe12-dea3-453a-996b-d8d006f4fb13 + X-Msedge-Ref: + - 'Ref A: 583B373EC08F462390226B46405DBDEB Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:08Z' + status: 200 OK + code: 200 + duration: 77.922917ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-UpperCaseazdtest-db377d0?api-version=2021-04-01 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 17:19:08 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkREQjM3N0QwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113520097300351&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=qMc3hSQiFcXGiWoHxNy2vxBOIeZaeypjB7NMTmYEYIO9impOdX_ixfay_wtDEqNsiNjnOvuunaxw0ciMn_ZZgLPrLIz0XrBM8hchqjhXmKDm3jjGfgbsl8RDpmUCs-3KPen9m3pfdHCGtgMhrM75Uww06rsyftAz0GJP_6y-YCRWY3RMJmlHgiN9PCvpvS5zvJaFt_VQmX0IuqB_jM3pP64f8HMhslAXGiK6bD2bb_uDZ-URo8pXA0Pu97s4DOs0sEgGAUwEv76RArz2ZLQmaSWHAQfpgfKiGDngsu2GogEiK58d-3q_YC1apH05asN_e6ISU0ogwckM-xIyldaGzA&h=QzvJ2vyBg5z1mtSmJTPnuIY3qFMhsnPgieiNfhjoCws + Pragma: + - no-cache + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 78dc8e143a3efe004254b4a203fa89b4 + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - f52deeab-3e81-450f-8e69-f57cc0aea1dc + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T171909Z:f52deeab-3e81-450f-8e69-f57cc0aea1dc + X-Msedge-Ref: + - 'Ref A: 2E274BB486C04332A15858B4426C0B93 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:19:09Z' + status: 202 Accepted + code: 202 + duration: 263.01ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1603,10 +29533,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkRXN0ZDQkVFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638803358349630869&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=XrAlZsgKBNliohUzQa41nr0Eal8YwXD7F9u3qoVJ46vqXSGNCUCCtK_JmimnbaU2_3uWAIsF2qLvWu45oEHwQWEg7UEDBOHlYwVDhHJj0LGvyjMOpD3Js1t3n0chPTLFF7vCkRQJilATJnV1uPBA5bTZJNKB1Uw1XZR6IcISZhUhx0ujqiQyDF93wTiJW8BjUYbtqhuK3hopclV1obeoheZJ05-Cyw0h-BdTvi5HXDV3Hk9gGMKhcsc4M5k67-pu8hVZrJinDydqgfcdJ46jV8jRm1c5PGXUYfhUO7uXZQ7vjV43w385gM8GPGxE7jJZ62eNJGXgXWHBXNf42XBCAw&h=A_g7fFfT4NfV4SRM7de15OsrK_PjpavRqv_0yPY0H40 + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkREQjM3N0QwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113520097300351&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=qMc3hSQiFcXGiWoHxNy2vxBOIeZaeypjB7NMTmYEYIO9impOdX_ixfay_wtDEqNsiNjnOvuunaxw0ciMn_ZZgLPrLIz0XrBM8hchqjhXmKDm3jjGfgbsl8RDpmUCs-3KPen9m3pfdHCGtgMhrM75Uww06rsyftAz0GJP_6y-YCRWY3RMJmlHgiN9PCvpvS5zvJaFt_VQmX0IuqB_jM3pP64f8HMhslAXGiK6bD2bb_uDZ-URo8pXA0Pu97s4DOs0sEgGAUwEv76RArz2ZLQmaSWHAQfpgfKiGDngsu2GogEiK58d-3q_YC1apH05asN_e6ISU0ogwckM-xIyldaGzA&h=QzvJ2vyBg5z1mtSmJTPnuIY3qFMhsnPgieiNfhjoCws method: GET response: proto: HTTP/2.0 @@ -1623,7 +29553,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 15 Apr 2025 17:44:10 GMT + - Thu, 09 Apr 2026 17:20:23 GMT Expires: - "-1" Pragma: @@ -1635,21 +29565,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 78dc8e143a3efe004254b4a203fa89b4 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0ae42b80-1644-4e83-9703-a5348e7118c1 + - 9633e921-1522-4c30-ad74-1304b2923b3b X-Ms-Routing-Request-Id: - - WESTUS:20250415T174410Z:0ae42b80-1644-4e83-9703-a5348e7118c1 + - EASTUS:20260409T172024Z:9633e921-1522-4c30-ad74-1304b2923b3b X-Msedge-Ref: - - 'Ref A: 3815CA8505B74AA893FDB7DA2E07380C Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:44:09Z' + - 'Ref A: F454085DBB514D1F9B88CF1A90001A5A Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:20:24Z' status: 200 OK code: 200 - duration: 813.8495ms - - id: 24 + duration: 88.335ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1670,10 +29600,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1681,18 +29611,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2645 + content_length: 2836 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-w7fcbee","azd-provision-param-hash":"6d61af66563664df8fd28b9c453ea380d4e5b42b4eedba36a5db2329e997c738"},"properties":{"templateHash":"761471799464656379","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-w7fcbee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:41:39Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:42:08.9181726Z","duration":"PT29.6916271S","correlationId":"5cdbe36b0ff7df64375245060c128d94","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-w7fcbee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stkkxlqz456576a"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-w7fcbee/providers/Microsoft.Storage/storageAccounts/stkkxlqz456576a"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-db377d0","azd-layer-name":"","azd-provision-param-hash":"a5eda1d0eb2f4a42cb75607f415d5ffde919be58851e5e6bda6f60bcbb681ebf"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-db377d0"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:18:13Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:18:42.9487864Z","duration":"PT29.0400736S","correlationId":"27e2706c9c175e5f60c1ee73ca250911","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-db377d0"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stlnhemacbwhdq4"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-UpperCaseazdtest-db377d0/providers/Microsoft.Storage/storageAccounts/stlnhemacbwhdq4"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2645" + - "2836" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:44:10 GMT + - Thu, 09 Apr 2026 17:20:24 GMT Expires: - "-1" Pragma: @@ -1704,21 +29634,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 78dc8e143a3efe004254b4a203fa89b4 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e754dd59-f66c-45be-9b5d-64ee8a34bced + - 42b6b2c0-2b19-48c8-b484-092c3c4dca29 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174411Z:e754dd59-f66c-45be-9b5d-64ee8a34bced + - EASTUS:20260409T172025Z:42b6b2c0-2b19-48c8-b484-092c3c4dca29 X-Msedge-Ref: - - 'Ref A: 73D7A1AAEB024153976CDB496A094BC0 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:44:10Z' + - 'Ref A: CCBF175BC9444F8D81CED40FCAB55F0B Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:20:24Z' status: 200 OK code: 200 - duration: 294.8766ms - - id: 25 + duration: 107.832416ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1729,7 +29659,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-w7fcbee"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-db377d0"}}' form: {} headers: Accept: @@ -1743,10 +29673,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1756,10 +29686,10 @@ interactions: trailer: {} content_length: 597 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-w7fcbee"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-15T17:44:11.5903314Z","duration":"PT0.0005122S","correlationId":"23a71f5d6e22c5155da1b86236532dbe","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-db377d0"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:20:25.2723755Z","duration":"PT0.0009091S","correlationId":"78dc8e143a3efe004254b4a203fa89b4","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873/operationStatuses/08584568678338819447?api-version=2021-04-01&t=638803358539184669&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=I_-4BJoSFWN8971zdd02yX3s3dV7tnzSnfCQW2xojJvMbIjbrYjCuVTixOyZwu6l_06JrcY3FsubcUTwC1QjBuCtigTdE9YL7vptE2Sy370VVvcxsM7O6SkeRXtPypQAPQpzN4Ml_UDL1dfTzToGEi46ZH8uxtAhVoi2iO3uyHQ8YcSRqYHR61VwPcbk5rLZljxTSxqQqJqCaFDYaRHArtMHWOZtazGsX027Zo5Oq5nCSRgDyRw7GQhqDRhAmXcWr5K_iMmc9MnQWKCiyA5sV4G_SDyUqS6nUvd_06MMfFe0E1E-hyQ7S21Hr1n2uJLXYGIox3KWExj8H9wyheCrBA&h=8G_oe-eiUDqUt7K-a5Aw1ATydExGs8AUKceMehO2luw + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075/operationStatuses/08584258516601910668?api-version=2021-04-01&t=639113520254598671&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=ZByduCuB9OG5fHHoH5oNup2Q5sevnQ1kkiO38p0lqDElRLI0BiB-5PgwY0zuw7oB7AQ4VXb1CtjeoPxHG78Ld23GTHbmIkDA8cDN-lbkwAlThqkJghWyW39DvT1ZWWJ76w0Tj7fQ1t_nJeaoHPbwNRPdoYzoSisE1NNueFXCwh9oUe71NyOBemJToyEpHtgZUoLxKtg3eumo28qR09e-v_EgzlvDywgfhJc94o6ow3YE4aJCurduyS69B9kwGtdMK684qIDqMzzgFxXMbfWJIAZWbuDax5HM1j7PlZxvlM4wsD2e86pZUgiSIWR1lUUh5MVWxkVEEz9GDAtZXoLAaQ&h=LnvglS6K2c0hfOoido81yFzs2p9SCaZv-tGFGY2gE3I Cache-Control: - no-cache Content-Length: @@ -1767,7 +29697,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:44:13 GMT + - Thu, 09 Apr 2026 17:20:24 GMT Expires: - "-1" Pragma: @@ -1779,23 +29709,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 78dc8e143a3efe004254b4a203fa89b4 X-Ms-Deployment-Engine-Version: - - 1.309.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 4ebd3d60-039d-4039-92f5-1e1f9ae55567 + - 1e16f515-cb5a-43f2-a6ec-9a06ba174786 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174413Z:4ebd3d60-039d-4039-92f5-1e1f9ae55567 + - EASTUS2:20260409T172025Z:1e16f515-cb5a-43f2-a6ec-9a06ba174786 X-Msedge-Ref: - - 'Ref A: 9D1459332A064214813F0A87D6F26C72 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:44:11Z' + - 'Ref A: 8AD9D4689DC94E9AABBD536239F18FB7 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:20:25Z' status: 200 OK code: 200 - duration: 2.8170359s - - id: 26 + duration: 462.559625ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1814,10 +29744,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873/operationStatuses/08584568678338819447?api-version=2021-04-01&t=638803358539184669&c=MIIHhzCCBm-gAwIBAgITfAaTiaklTwdb3CiPmAAABpOJqTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIxMjI0MTE0WhcNMjUwNzIwMjI0MTE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOmbUr8nPmMTJCdlYtukpEJEQ6NI5er-Vfsp5MRwIESjPj6gQ9NC4czYZZZ3dm1Hp85y0l3ZlFsYoTHzzHaj2ZqWW0V97CbxFcGqXohbDUnk9dpmspwGy2SiEGYseXIea4nHCbGLZQy9h7EC74uBI6WqsfoFLCnIiUvBkXQsneM4Y__PD4oGkBE3QX-BFjX1GvNN4lO26JmdnJujHiuGiY_Xdzy4wfChN8m2A3NuGFRyygED5SOQHVAaJaNpxoOgPvS98XVyKf7SpVpY3Edx8OwdSXVus6lL9Lu14CF30haHpRpV2zE3G5nevFwh9XSquojKUfYLTq1ohD1mxiznhm0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT870AQV-Tgc57mnegK8TIGwtH2xzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKt7SAWtCzPHMRCbBGIjKD-lleovshqUK-Rpyq5vsIWLLfzY9HZVzLgVMKYbI7sfGu8DGG2Q_AYLZ-pfZV8p9Q47EY_5LhruBCZDg9158kT335PwQ3aMdnE2cA0Cvkk18UEDWTaXZd0binxFy4dzOklmsDsb8VU-3A3KZfsL6RN_v-i0iw2KaT2zhGu59LdeqtDyBxefzHUHFT00QtVqDQRbq7FOMr-tYyBmUYS_9c8LHvmr0yNHtGH_Vqj7QZa8xYQPBrS-rRnWVDrS3v_xqv-9QxowrZKWmtYYqQakuTuGBh2DYpRjKeyGhNc1DssNE2AJp2l-xShy3IY2Rk24bYE&s=I_-4BJoSFWN8971zdd02yX3s3dV7tnzSnfCQW2xojJvMbIjbrYjCuVTixOyZwu6l_06JrcY3FsubcUTwC1QjBuCtigTdE9YL7vptE2Sy370VVvcxsM7O6SkeRXtPypQAPQpzN4Ml_UDL1dfTzToGEi46ZH8uxtAhVoi2iO3uyHQ8YcSRqYHR61VwPcbk5rLZljxTSxqQqJqCaFDYaRHArtMHWOZtazGsX027Zo5Oq5nCSRgDyRw7GQhqDRhAmXcWr5K_iMmc9MnQWKCiyA5sV4G_SDyUqS6nUvd_06MMfFe0E1E-hyQ7S21Hr1n2uJLXYGIox3KWExj8H9wyheCrBA&h=8G_oe-eiUDqUt7K-a5Aw1ATydExGs8AUKceMehO2luw + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075/operationStatuses/08584258516601910668?api-version=2021-04-01&t=639113520254598671&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=ZByduCuB9OG5fHHoH5oNup2Q5sevnQ1kkiO38p0lqDElRLI0BiB-5PgwY0zuw7oB7AQ4VXb1CtjeoPxHG78Ld23GTHbmIkDA8cDN-lbkwAlThqkJghWyW39DvT1ZWWJ76w0Tj7fQ1t_nJeaoHPbwNRPdoYzoSisE1NNueFXCwh9oUe71NyOBemJToyEpHtgZUoLxKtg3eumo28qR09e-v_EgzlvDywgfhJc94o6ow3YE4aJCurduyS69B9kwGtdMK684qIDqMzzgFxXMbfWJIAZWbuDax5HM1j7PlZxvlM4wsD2e86pZUgiSIWR1lUUh5MVWxkVEEz9GDAtZXoLAaQ&h=LnvglS6K2c0hfOoido81yFzs2p9SCaZv-tGFGY2gE3I method: GET response: proto: HTTP/2.0 @@ -1836,7 +29766,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:44:44 GMT + - Thu, 09 Apr 2026 17:20:54 GMT Expires: - "-1" Pragma: @@ -1848,21 +29778,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 78dc8e143a3efe004254b4a203fa89b4 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3f1af1bc-6d11-44ad-86df-2f9f758927fe + - 927ac162-2a69-405a-b714-efd02bbafa81 X-Ms-Routing-Request-Id: - - WESTUS:20250415T174444Z:3f1af1bc-6d11-44ad-86df-2f9f758927fe + - EASTUS:20260409T172055Z:927ac162-2a69-405a-b714-efd02bbafa81 X-Msedge-Ref: - - 'Ref A: FBE95A5D424248ECAC52277E0EA66DD7 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:44:44Z' + - 'Ref A: 5147EAE034F9406BB3B43FCA87E50B1D Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:20:55Z' status: 200 OK code: 200 - duration: 212.1315ms - - id: 27 + duration: 128.640958ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1881,10 +29811,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873?api-version=2021-04-01 + - 78dc8e143a3efe004254b4a203fa89b4 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1894,7 +29824,7 @@ interactions: trailer: {} content_length: 632 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-w7fcbee-1744738873","name":"UpperCaseazdtest-w7fcbee-1744738873","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-w7fcbee"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:44:16.5917356Z","duration":"PT5.0014042S","correlationId":"23a71f5d6e22c5155da1b86236532dbe","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/UpperCaseazdtest-db377d0-1775755075","name":"UpperCaseazdtest-db377d0-1775755075","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-db377d0"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:20:26.0244599Z","duration":"PT0.7520844S","correlationId":"78dc8e143a3efe004254b4a203fa89b4","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -1903,7 +29833,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:44:44 GMT + - Thu, 09 Apr 2026 17:20:54 GMT Expires: - "-1" Pragma: @@ -1915,21 +29845,9243 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23a71f5d6e22c5155da1b86236532dbe + - 78dc8e143a3efe004254b4a203fa89b4 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5d316d9d-332c-4006-9f5b-0e36fa0e2f1b + - 3ec8f052-40c4-4460-b32b-55ef0b65204c X-Ms-Routing-Request-Id: - - WESTUS:20250415T174444Z:5d316d9d-332c-4006-9f5b-0e36fa0e2f1b + - EASTUS2:20260409T172055Z:3ec8f052-40c4-4460-b32b-55ef0b65204c X-Msedge-Ref: - - 'Ref A: A9060DD0B782403CA5C89E0870A1A603 Ref B: CO6AA3150219053 Ref C: 2025-04-15T17:44:44Z' + - 'Ref A: A74765D4D4F442A4AB795D4A5B22BB60 Ref B: BN1AA2051012017 Ref C: 2026-04-09T17:20:55Z' + status: 200 OK + code: 200 + duration: 73.794375ms + - id: 50 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:20:56 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:25:56 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 237cf3f57d34404e4af8616f13f3ee24fe2bf054 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760069-MIA + X-Timer: + - S1775755256.050979,VS0,VE57 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 150.3385ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:20:56 GMT + Expires: + - Thu, 09 Apr 2026 17:20:56 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: 211.590708ms + - id: 52 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:20:56 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:25:56 GMT + Source-Age: + - "179" + 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: + - e6af393a37a07a7ff6202993e211d99d1c7d24d5 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760069-MIA + X-Timer: + - S1775755256.359722,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 23.591167ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:20:56 GMT + Expires: + - Thu, 09 Apr 2026 17:20:56 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 142.058792ms + - id: 54 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:20:56 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:25:56 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 7a7e2e86334fcd9c1b41351dec45764027ee570f + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760069-MIA + X-Timer: + - S1775755257.546151,VS0,VE115 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 133.889708ms + - id: 55 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:20:56 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 17:25:56 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 2e9520bc99f24ac6cefe659901a33f4065f27464 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760069-MIA + X-Timer: + - S1775755257.697184,VS0,VE48 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 216.9601ms + duration: 64.994083ms --- -env_name: UpperCaseazdtest-w7fcbee -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1744738873" +env_name: UpperCaseazdtest-db377d0 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775755075" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml index 655395274d8..1333f388e99 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - cc24217f82308281651e5a8fec049930 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:10 GMT + - Thu, 09 Apr 2026 17:25:02 GMT Expires: - "-1" Pragma: @@ -56,32 +56,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 + - cc24217f82308281651e5a8fec049930 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 321e0e87-3a7b-41fb-b92d-68c34d5d5bb1 + - c9c7c457-4e7b-4443-8362-f8c0e3201a45 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005010Z:321e0e87-3a7b-41fb-b92d-68c34d5d5bb1 + - EASTUS2:20260409T172502Z:c9c7c457-4e7b-4443-8362-f8c0e3201a45 X-Msedge-Ref: - - 'Ref A: 16618E2C36D1461897453366845C2938 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:08Z' + - 'Ref A: 355C99DC6B7847A68B182FA4E3AAD802 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:25:01Z' status: 200 OK code: 200 - duration: 2.604429625s + duration: 1.380026s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4900 + content_length: 4899 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}},"whatIfSettings":{}}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}},"whatIfSettings":{}}}' form: {} headers: Accept: @@ -91,14 +91,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4900" + - "4899" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/whatIf?api-version=2021-04-01 + - cc24217f82308281651e5a8fec049930 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/whatIf?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -115,11 +115,11 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:50:11 GMT + - Thu, 09 Apr 2026 17:25:03 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODA4RTYwOjJEMTc3MDA3OTc5Mi1CODMzODNDNjoyREVEQjQ6MkQ0RjE0OjJEQUVFMjoyREI1M0Y2MTgyMjJDRiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639056766118851551&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=njnwhzhPVNYrKHlDe0pfTdSpuLzxs0pf5hoDimjH74TcLefR8rOGcxePKhOyANZ2n_xCAQlox-nfrsQE9BCxnAn58LX-0txGiS3iq_C23S_v3c60OWcp2Q01G3QXimMJddhAJAna5VZ3XpY4FlvsQGtbhcDNLgBpJpnwhe1wilEO69sXfPfMVD88OgXDvRr0StTA2nMgezbcHllL27xnXlw5PSIApbVk0v9KrcuUpMWBUi1dhquPsfPlzNrtkiBeiG8Uk8DuoWGGG2FWpzUROQqNpu3-qzyC9k3CTpehDM6Ll8Diu0fB6mKtfM_RvKWMnq2ZGUAOLoXxL1Yfgf3a1w&h=zsAAmHDbBvnj689Mmrlu_Zcr-cthVqOQPz2DcOO3ttE + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODUyM0NBOjJEMTc3NTc1NTQ5Ny1CMTZERDVFMjoyREJBNDE6MkQ0NTg5OjJEQUVFOToyRDQ1QjI1MjAyNzg1QyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639113523640105288&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=QHMTMK4hzAhoeIanmzfRZvx6hdV6SN3xosBxnvKYJX6rITM8Bs7WAzcXGJHH_f65GGvO60epQgxdRnvvI5E7kgEp5yXNtMnnvYucuHX8a8z-tY3MtX9rw15dWMo5eUVFkr-Ynj5S0BJEBpW_dPF_LQdTz31FB9v3N8Xlr1l0Kq7EBxLk4lp7giXWwAcDlJUCp5e72WvUElwCLc5VJXx8wK1S2kv6eTgJHwaWTNKp40SdfjXoVVSMGxjwqFT2nHV_GE2V2P3ge8kAVcCOKkPnIXWkzY8oksCxN4pad80f-RYEKOl7PdZ_GbFaiZH7nifM0IbDdO7zBF0pXCUupl_YYA&h=1VseyO2ZdesvVKCRd-zXJ2QIQ7wizeN_7gSQr5N--6I Pragma: - no-cache Retry-After: @@ -131,20 +131,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 + - cc24217f82308281651e5a8fec049930 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - b83383c6-edb4-4f14-aee2-b53f618222cf + - b16dd5e2-ba41-4589-aee9-45b25202785c X-Ms-Routing-Request-Id: - - WESTUS:20260203T005011Z:b83383c6-edb4-4f14-aee2-b53f618222cf + - EASTUS:20260409T172503Z:b16dd5e2-ba41-4589-aee9-45b25202785c X-Msedge-Ref: - - 'Ref A: 399F7947CB134E48A5E1C729F1C44A35 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:10Z' + - 'Ref A: 3CF9CABDE27548BDA49BD8C1CCA73333 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:25:02Z' status: 202 Accepted code: 202 - duration: 1.236136333s + duration: 587.802958ms - id: 2 request: proto: HTTP/1.1 @@ -164,10 +164,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODA4RTYwOjJEMTc3MDA3OTc5Mi1CODMzODNDNjoyREVEQjQ6MkQ0RjE0OjJEQUVFMjoyREI1M0Y2MTgyMjJDRiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639056766118851551&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=njnwhzhPVNYrKHlDe0pfTdSpuLzxs0pf5hoDimjH74TcLefR8rOGcxePKhOyANZ2n_xCAQlox-nfrsQE9BCxnAn58LX-0txGiS3iq_C23S_v3c60OWcp2Q01G3QXimMJddhAJAna5VZ3XpY4FlvsQGtbhcDNLgBpJpnwhe1wilEO69sXfPfMVD88OgXDvRr0StTA2nMgezbcHllL27xnXlw5PSIApbVk0v9KrcuUpMWBUi1dhquPsfPlzNrtkiBeiG8Uk8DuoWGGG2FWpzUROQqNpu3-qzyC9k3CTpehDM6Ll8Diu0fB6mKtfM_RvKWMnq2ZGUAOLoXxL1Yfgf3a1w&h=zsAAmHDbBvnj689Mmrlu_Zcr-cthVqOQPz2DcOO3ttE + - cc24217f82308281651e5a8fec049930 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODUyM0NBOjJEMTc3NTc1NTQ5Ny1CMTZERDVFMjoyREJBNDE6MkQ0NTg5OjJEQUVFOToyRDQ1QjI1MjAyNzg1QyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639113523640105288&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=QHMTMK4hzAhoeIanmzfRZvx6hdV6SN3xosBxnvKYJX6rITM8Bs7WAzcXGJHH_f65GGvO60epQgxdRnvvI5E7kgEp5yXNtMnnvYucuHX8a8z-tY3MtX9rw15dWMo5eUVFkr-Ynj5S0BJEBpW_dPF_LQdTz31FB9v3N8Xlr1l0Kq7EBxLk4lp7giXWwAcDlJUCp5e72WvUElwCLc5VJXx8wK1S2kv6eTgJHwaWTNKp40SdfjXoVVSMGxjwqFT2nHV_GE2V2P3ge8kAVcCOKkPnIXWkzY8oksCxN4pad80f-RYEKOl7PdZ_GbFaiZH7nifM0IbDdO7zBF0pXCUupl_YYA&h=1VseyO2ZdesvVKCRd-zXJ2QIQ7wizeN_7gSQr5N--6I method: GET response: proto: HTTP/2.0 @@ -177,7 +177,7 @@ interactions: trailer: {} content_length: 1269 uncompressed: false - body: '{"status":"Succeeded","properties":{"correlationId":"713ceab6071dd5238e3fc14aa28d63b7","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","changeType":"Create","after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","location":"eastus2","name":"rg-azdtest-d808e60","tags":{"ArrayTag":"[]","azd-env-name":"azdtest-d808e60","BoolTag":"False","DeleteAfter":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","IntTag":"678","ObjectTag":"{}","SecureObjectTag":"{}","SecureTag":"[parameters(''secureValue'')]"},"type":"Microsoft.Resources/resourceGroups"}},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe","changeType":"Create","after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe","kind":"StorageV2","location":"eastus2","name":"sty6wm2xz3lebfe","properties":{"allowSharedKeyAccess":false},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-d808e60"},"type":"Microsoft.Storage/storageAccounts"}}]}}' + body: '{"status":"Succeeded","properties":{"correlationId":"cc24217f82308281651e5a8fec049930","changes":[{"resourceId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","changeType":"Create","after":{"apiVersion":"2021-04-01","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","location":"eastus2","name":"rg-azdtest-d8523ca","tags":{"ArrayTag":"[]","azd-env-name":"azdtest-d8523ca","BoolTag":"False","DeleteAfter":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","IntTag":"678","ObjectTag":"{}","SecureObjectTag":"{}","SecureTag":"[parameters(''secureValue'')]"},"type":"Microsoft.Resources/resourceGroups"}},{"resourceId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk","changeType":"Create","after":{"apiVersion":"2022-05-01","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk","kind":"StorageV2","location":"eastus2","name":"stbcsg4z42wdpnk","properties":{"allowSharedKeyAccess":false},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-d8523ca"},"type":"Microsoft.Storage/storageAccounts"}}]}}' headers: Cache-Control: - no-cache @@ -186,7 +186,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:27 GMT + - Thu, 09 Apr 2026 17:26:19 GMT Expires: - "-1" Pragma: @@ -198,20 +198,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 + - cc24217f82308281651e5a8fec049930 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 417973bc-4c33-4d0f-953e-0ae1f40defcf + - 331333a6-d763-4979-aefa-1cc47c41f120 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005027Z:417973bc-4c33-4d0f-953e-0ae1f40defcf + - EASTUS:20260409T172619Z:331333a6-d763-4979-aefa-1cc47c41f120 X-Msedge-Ref: - - 'Ref A: 7533D7E9E5954E3897BCC2620903C569 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:26Z' + - 'Ref A: 41B967914D45471081043FA94E1D63AF Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:19Z' status: 200 OK code: 200 - duration: 1.001634s + duration: 581.85125ms - id: 3 request: proto: HTTP/1.1 @@ -233,10 +233,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d808e60%27&api-version=2021-04-01 + - cc24217f82308281651e5a8fec049930 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d8523ca%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -255,7 +255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:27 GMT + - Thu, 09 Apr 2026 17:26:19 GMT Expires: - "-1" Pragma: @@ -267,20 +267,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 + - cc24217f82308281651e5a8fec049930 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2b24d37f-5485-4bfa-9a1c-47feb9820b42 + - bce507d3-ece5-4f1f-b5ec-9b94790603f2 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005028Z:2b24d37f-5485-4bfa-9a1c-47feb9820b42 + - EASTUS2:20260409T172619Z:bce507d3-ece5-4f1f-b5ec-9b94790603f2 X-Msedge-Ref: - - 'Ref A: 321626C2D1154DBD9D92CF65F24018AE Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:28Z' + - 'Ref A: 83D16E7FECED42D8BCDE30C2FFA64C1E Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:19Z' status: 200 OK code: 200 - duration: 109.969542ms + duration: 159.435375ms - id: 4 request: proto: HTTP/1.1 @@ -302,10 +302,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 + - cc24217f82308281651e5a8fec049930 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -313,18 +313,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 29952 + content_length: 13198 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antischfoundrymachine","name":"antischfoundrymachine","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"antischfoundrymachine","DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg48943Second","name":"javacsmrg48943Second","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/06/2026 08:22:50"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/lfraleigh-my-hosted-agent-rg","name":"lfraleigh-my-hosted-agent-rg","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"DeleteAfter":"02/03/2026 04:33:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-dealmahastorage","name":"rg-dealmahastorage","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"Owners":"dealmaha","ServiceDirectory":"storage","DeleteAfter":"2025-09-03T18:34:00.1287154Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2025-03-05T22:20:18.0264905Z","ServiceDirectory":"messaging/azeventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\"","owners":"jsquire, juanospina"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest","name":"v-tongMonthlyReleaseTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"12/15/2026 04:13:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcp-swe-demo-rg","name":"mcp-swe-demo-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-mcp-demo","name":"rohitganguly-mcp-demo","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"SecurePaaS.NspAssociatedDate":"2025-08-20T21:28:48Z","SecurePaaS.NspPolicyVersion":"1.0.36","SecurePaaS.NspDeployedBy::DDFun":"https://dev.azure.com/devdiv/Engineering/_wiki/wikis/CNEKB/48856/S360-SFI-NS2.2.1-Secure-PaaS-Resources-Azure-Policy-deploy-if-not-exists"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chatbotrg","name":"chatbotrg","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec_helper","name":"typespec_helper","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DoNotDelete":"yes","Owners":"jiaqzhang,Renhe.Li,Yu.Chun","Purpose":"Azure SDK QA Bot Dev environment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-prod-eastasia","name":"azure-sdk-qa-bot-prod-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-wanl-eastasia","name":"azure-sdk-qa-bot-wanl-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-devinternal-eastasia","name":"azure-sdk-qa-bot-devinternal-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-dev-eastasia","name":"azure-sdk-qa-bot-dev-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jialinhuang-test","name":"rg-jialinhuang-test","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"12/19/2025 16:30:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stg","name":"rg-weilim-stg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"prod","DeleteAfter":"02/08/2026 20:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-2-eus2-fgdps","name":"rg-jinlong-2-eus2-fgdps","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-2","azd-template":"ronaldbosma/azure-integration-services-quickstart","DeleteAfter":"03/01/2025 12:17:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/prmarott-apiview","name":"prmarott-apiview","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-aihackery","name":"rg-aihackery","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"Because It''s Awesome"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/trpresco-archagent","name":"trpresco-archagent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm6e012f0814954aa","name":"cm6e012f0814954aa","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-ripark","name":"rg-ripark","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/judytest","name":"judytest","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/16/2025 07:41:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzureBackupRG_eastus2_1","name":"AzureBackupRG_eastus2_1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.RecoveryServices/","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-renhel-8669","name":"rg-renhel-8669","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"owner":"renhe","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryostorage","name":"rg-larryostorage","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-10-29T21:50:46.7625939Z","ServiceDirectory":"storage","Owners":"larryo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcp-perf","name":"mcp-perf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"11/22/2026 08:17:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pmarcu-func-rand-mcp","name":"rg-pmarcu-func-rand-mcp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"pmarcu-func-rand-mcp","DeleteAfter":"02/07/2026 00:33:35"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vigera-group","name":"vigera-group","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"02/07/2026 00:33:35"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/conniey-rg","name":"conniey-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"02/08/2026 00:34:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"dev","DeleteAfter":"02/09/2026 20:23:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-dev-ngx42j","name":"rg-dev-ngx42j","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"dev","DeleteAfter":"02/09/2026 20:23:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pmarcu-dev-func-test-u63ek3","name":"rg-pmarcu-dev-func-test-u63ek3","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"pmarcu-dev-func-test","DeleteAfter":"02/10/2026 00:17:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-prod-oui4ji","name":"rg-prod-oui4ji","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"prod","DeleteAfter":"02/03/2026 23:35:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-frogger-game","name":"rg-frogger-game","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"frogger-game","DeleteAfter":"02/03/2026 23:35:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pmarcu-dev-ij74eo","name":"rg-pmarcu-dev-ij74eo","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"pmarcu-dev","DeleteAfter":"02/12/2026 23:35:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/DefaultResourceGroup-WUS2","name":"DefaultResourceGroup-WUS2","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"02/03/2026 23:35:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/whiteboard-app-rg","name":"whiteboard-app-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"02/03/2026 23:35:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu-foundry","name":"wenjiefu-foundry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryo-bulletin-dev","name":"rg-larryo-bulletin-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"larryo-bulletin-dev","DeleteAfter":"02/08/2026 05:07:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/larryo-bulletin-dev-rg-53vgsd6urkjzm","name":"larryo-bulletin-dev-rg-53vgsd6urkjzm","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"dev","Application":"bulletin-board","Owner":"larryo","CreatedOn":"2026-01-30T18:46:05Z","auto-delete":"true","delete-after-hours":"72","DeleteAfter":"02/09/2026 20:23:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/larryo-bb-dev-rg-53vgsd6urkjzm","name":"larryo-bb-dev-rg-53vgsd6urkjzm","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"dev","Application":"bulletin-board","Owner":"larryo","CreatedOn":"2026-01-30T19:19:22Z","auto-delete":"true","delete-after-hours":"72","DeleteAfter":"02/09/2026 20:23:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-dev-2ofcch","name":"rg-dev-2ofcch","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev","DeleteAfter":"02/10/2026 00:17:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-awesome-site-dev-qbpvi6","name":"rg-awesome-site-dev-qbpvi6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"awesome-site-dev","DeleteAfter":"02/03/2026 23:35:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-bulletinboard-larryo-dev","name":"rg-bulletinboard-larryo-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"02/03/2026 23:35:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-triageagentsquad","name":"rg-triageagentsquad","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc82824eb","name":"rgloc82824eb","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-heathsstorage","name":"rg-heathsstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","DeleteAfter":"2025-12-17T01:29:17.9284551Z","Owners":"heaths"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-searchrgtest","name":"rg-searchrgtest","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"minhanhphan","ServiceDirectory":"search","DeleteAfter":"02/08/2026 20:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-dasd","name":"rg-weilim-dasd","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-dasd","DeleteAfter":"2026-02-03T00:55:58Z","IntTag":"678","BoolTag":"False","SecureTag":"something","SecureObjectTag":"{}","ArrayTag":"[\"val1\",\"val2\"]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/UxTestRG","name":"UxTestRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-skaluvak","name":"rg-skaluvak","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/08/2026 00:34:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/juanospina_rg_1067","name":"juanospina_rg_1067","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/08/2026 00:34:58"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-discussion-board-prod","name":"rg-discussion-board-prod","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"discussion-board-prod"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/Default-ApplicationInsights-EastUS","name":"Default-ApplicationInsights-EastUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shayne","name":"shayne","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/sociallinker","name":"sociallinker","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/first-timers-only","name":"first-timers-only","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shboyer-ghost","name":"shboyer-ghost","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates","name":"azureadvocates","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","name":"ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/microsoft.insights/components/social-linker-insights","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceai","name":"rg-unconferenceai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"unconferenceai"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdevtools-pm","name":"azdevtools-pm","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","name":"pmdataagent-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-func-flex-demo","name":"rg-func-flex-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"func-flex-demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/devtopromoter","name":"devtopromoter","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/nerddinner-mvc4","name":"nerddinner-mvc4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS2","name":"DefaultResourceGroup-EUS2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","name":"rg-shboyer-4385","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-octopets-2025","name":"rg-octopets-2025","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"aspire":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py","name":"rg-scope-func-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","name":"ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py/providers/microsoft.insights/components/appi-vc3jdcjrljj4e","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recorded-swa-session","name":"rg-recorded-swa-session","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dash","name":"rg-ontology-dash","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dash"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dashboard","name":"rg-ontology-dashboard","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dashboard"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-fortune-peter","name":"rg-fortune-peter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fortune-peter"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recipe-remix-dev","name":"rg-recipe-remix-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"recipe-remix-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-bug-detective-dev","name":"rg-bug-detective-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"bug-detective-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","name":"rg-shboyer-af-ts","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-echo-ts-fresh","name":"rg-echo-ts-fresh","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"echo-ts-fresh"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ts-mf-testing","name":"rg-ts-mf-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ts-mf-testing"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/waza-docs-rg","name":"waza-docs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-collab-plan","name":"rg-collab-plan","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-task-tracker-demo","name":"rg-task-tracker-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-demo-deploy-k8m3","name":"rg-demo-deploy-k8m3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"demo-deploy-k8m3"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-forge-plugin-dev","name":"rg-forge-plugin-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"forge-plugin-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-test-agent","name":"rg-test-agent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev","name":"rg-waza-platform-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"waza-platform-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/swa-tutorial","name":"swa-tutorial","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceapp","name":"rg-unconferenceapp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"unconferenceapp"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","name":"rg-copilot-demo","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-calc","name":"rg-calc","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"calc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-email-router-agent","name":"rg-email-router-agent","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"email-router-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-david-test","name":"rg-david-test","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"david-test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-claw","name":"rg-foundry-claw","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-claw"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus","name":"rg-foundry-helper-ncus","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-helper-ncus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-USW3","name":"DefaultResourceGroup-USW3","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "29952" + - "13198" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:27 GMT + - Thu, 09 Apr 2026 17:26:19 GMT Expires: - "-1" Pragma: @@ -336,20 +336,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 713ceab6071dd5238e3fc14aa28d63b7 + - cc24217f82308281651e5a8fec049930 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fca4a896-b1da-45a0-b4a9-8e967f69e639 + - 852b0c87-6c35-420e-bec4-0daca7d5f600 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005028Z:fca4a896-b1da-45a0-b4a9-8e967f69e639 + - EASTUS:20260409T172620Z:852b0c87-6c35-420e-bec4-0daca7d5f600 X-Msedge-Ref: - - 'Ref A: 2C72FFDFAD664069B8C917D93CC5A618 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:28Z' + - 'Ref A: E843C4559BC64BE8808E722272A55150 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:19Z' status: 200 OK code: 200 - duration: 166.277917ms + duration: 187.043375ms - id: 5 request: proto: HTTP/1.1 @@ -371,10 +371,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -382,18 +382,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:32 GMT + - Thu, 09 Apr 2026 17:26:22 GMT Expires: - "-1" Pragma: @@ -405,20 +405,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 24b0646c-538c-47b6-b83b-14a27fd77687 + - 23a16f56-14e5-440c-a795-6c58b62a1677 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005032Z:24b0646c-538c-47b6-b83b-14a27fd77687 + - EASTUS:20260409T172622Z:23a16f56-14e5-440c-a795-6c58b62a1677 X-Msedge-Ref: - - 'Ref A: CCCAB485211446CAA476F8E83A29481F Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:30Z' + - 'Ref A: 40CA6229F71447B5ADD444B6915CA199 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:22Z' status: 200 OK code: 200 - duration: 1.855984s + duration: 925.566292ms - id: 6 request: proto: HTTP/1.1 @@ -440,10 +440,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -451,18 +451,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 960970 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "960970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:38 GMT + - Thu, 09 Apr 2026 17:26:26 GMT Expires: - "-1" Pragma: @@ -474,20 +474,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fc61bc52-e228-4518-890c-539d2eaf3485 + - 66a6ac81-b277-42cc-af67-b82cd159c6ed X-Ms-Routing-Request-Id: - - WESTUS:20260203T005038Z:fc61bc52-e228-4518-890c-539d2eaf3485 + - EASTUS2:20260409T172626Z:66a6ac81-b277-42cc-af67-b82cd159c6ed X-Msedge-Ref: - - 'Ref A: 010DD309E0744A3391363C8CE7D2627B Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:32Z' + - 'Ref A: C73C17C8469B46FDA23692FD97072A82 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:23Z' status: 200 OK code: 200 - duration: 6.186602875s + duration: 3.693749417s - id: 7 request: proto: HTTP/1.1 @@ -507,10 +507,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -518,18 +518,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 847664 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "847664" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:40 GMT + - Thu, 09 Apr 2026 17:26:28 GMT Expires: - "-1" Pragma: @@ -541,20 +541,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e0b80520-535b-40f2-8c41-4676606e6b56 + - fdb51c0d-2a80-47ba-bb7c-c62f4a92431e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005040Z:e0b80520-535b-40f2-8c41-4676606e6b56 + - EASTUS:20260409T172629Z:fdb51c0d-2a80-47ba-bb7c-c62f4a92431e X-Msedge-Ref: - - 'Ref A: 642B5DD22014418395974867E80A5905 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:39Z' + - 'Ref A: 93F726E92BFE41BA9E108CE4DCA53E85 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:27Z' status: 200 OK code: 200 - duration: 1.366056333s + duration: 2.427123375s - id: 8 request: proto: HTTP/1.1 @@ -574,10 +574,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -585,18 +585,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 251006 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCdXFLLxZW%2bLUFrltr3NvZmOG0ZRkw8Aw%2fPfJlIfFt3u%2b8%2bUm50zeKl8X%2fnSoi8qbqsz9N4nPRMy1sXoynD5v6%2b3hqy4GY53%2fkJjQ4ClQZt%2fKbv9Awj8Dqmbs6HQWQJkwyY9NZl%2b5tNmj4owBdzyLMJFWRMownhlcKPP%2bAVSlGx01KbcXT3ayO1L1KdqUP0%2fkwBZUADJpqFsCggZUW8QVvzBtKEusgxWgnMkSbObYGiN8UYh2V9YJ6UOyEMrAfGM1if3JufA2bkw7cZt6La%2fxfzkdo0rBLO%2f%2b6dTe0b7%2fBQ%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "251006" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:42 GMT + - Thu, 09 Apr 2026 17:26:30 GMT Expires: - "-1" Pragma: @@ -608,20 +608,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2f46cbe4-9cfa-4fe3-ac57-2c0e8d852aa9 + - 542bb372-9940-4100-9ca0-c9d48fbadf1b X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005042Z:2f46cbe4-9cfa-4fe3-ac57-2c0e8d852aa9 + - EASTUS2:20260409T172631Z:542bb372-9940-4100-9ca0-c9d48fbadf1b X-Msedge-Ref: - - 'Ref A: 1DD20B30C79441FB9B091AFEADF366E4 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:41Z' + - 'Ref A: DC50418C976F4A2CA76493C13DCB0C88 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:29Z' status: 200 OK code: 200 - duration: 1.720104s + duration: 1.412678166s - id: 9 request: proto: HTTP/1.1 @@ -641,10 +641,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCdXFLLxZW%2BLUFrltr3NvZmOG0ZRkw8Aw%2FPfJlIfFt3u%2B8%2BUm50zeKl8X%2FnSoi8qbqsz9N4nPRMy1sXoynD5v6%2B3hqy4GY53%2FkJjQ4ClQZt%2FKbv9Awj8Dqmbs6HQWQJkwyY9NZl%2B5tNmj4owBdzyLMJFWRMownhlcKPP%2BAVSlGx01KbcXT3ayO1L1KdqUP0%2FkwBZUADJpqFsCggZUW8QVvzBtKEusgxWgnMkSbObYGiN8UYh2V9YJ6UOyEMrAfGM1if3JufA2bkw7cZt6La%2Fxfzkdo0rBLO%2F%2B6dTe0b7%2FBQ%3D%3D&api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -652,18 +652,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:43 GMT + - Thu, 09 Apr 2026 17:26:31 GMT Expires: - "-1" Pragma: @@ -675,32 +675,99 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9d039bdc-53e7-463e-b1f0-67fbf29e5252 + - 511153a5-fa9b-4905-9bc2-40accdf90b43 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005043Z:9d039bdc-53e7-463e-b1f0-67fbf29e5252 + - EASTUS:20260409T172632Z:511153a5-fa9b-4905-9bc2-40accdf90b43 X-Msedge-Ref: - - 'Ref A: 4E88DFDA4D8547F39BD25BE03456C5CD Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:42Z' + - 'Ref A: C756084AA6BB43A0BF7F52A83513A839 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:31Z' status: 200 OK code: 200 - duration: 923.944958ms + duration: 939.701792ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5036 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:26:32 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5e2bd2c93b7371478638a64a0316a37c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7213da77-5c0d-4c6e-8e5e-2c10222c8dfe + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172632Z:7213da77-5c0d-4c6e-8e5e-2c10222c8dfe + X-Msedge-Ref: + - 'Ref A: 28DD2E81BA1D45F2941D5B341210030D Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:32Z' + status: 200 OK + code: 200 + duration: 687.515166ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5035 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"07fb90c22e2108d8267084b0537d45db0537e355d63b43c2a77acaaff85e9f46"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"60af96b86563855560236dadb71cb65762cccf78040e30b1961abb261380cd23"}}' form: {} headers: Accept: @@ -710,14 +777,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5036" + - "5035" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/validate?api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/validate?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -725,18 +792,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2119 + content_length: 2118 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"07fb90c22e2108d8267084b0537d45db0537e355d63b43c2a77acaaff85e9f46"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:44Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:50:44.2512841Z","duration":"PT0S","correlationId":"9a3574d18953fab9ee98bd8141fbc5ab","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"60af96b86563855560236dadb71cb65762cccf78040e30b1961abb261380cd23"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:26:34Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:26:34.6130229Z","duration":"PT0S","correlationId":"5e2bd2c93b7371478638a64a0316a37c","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2119" + - "2118" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:45 GMT + - Thu, 09 Apr 2026 17:27:05 GMT Expires: - "-1" Pragma: @@ -748,32 +815,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" + - "12000" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - "800" X-Ms-Request-Id: - - b9008080-654e-466f-aa2a-25a591e50fa0 + - c382b6b8-c54d-4b61-b81e-e758fd74c1c6 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005045Z:b9008080-654e-466f-aa2a-25a591e50fa0 + - EASTUS:20260409T172705Z:c382b6b8-c54d-4b61-b81e-e758fd74c1c6 X-Msedge-Ref: - - 'Ref A: 374732E5893A4E34816D0386B1624C56 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:43Z' + - 'Ref A: BBA85B62FD2543D881083C54728DD7BD Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:26:34Z' status: 200 OK code: 200 - duration: 1.907346292s - - id: 11 + duration: 31.646739958s + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5036 + content_length: 5035 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"07fb90c22e2108d8267084b0537d45db0537e355d63b43c2a77acaaff85e9f46"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"60af96b86563855560236dadb71cb65762cccf78040e30b1961abb261380cd23"}}' form: {} headers: Accept: @@ -783,14 +850,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5036" + - "5035" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -798,20 +865,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1706 + content_length: 1705 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"07fb90c22e2108d8267084b0537d45db0537e355d63b43c2a77acaaff85e9f46"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:46Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:50:46.4749115Z","duration":"PT0.0004926S","correlationId":"9a3574d18953fab9ee98bd8141fbc5ab","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"60af96b86563855560236dadb71cb65762cccf78040e30b1961abb261380cd23"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:27:06Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:27:06.0709067Z","duration":"PT0.0003641S","correlationId":"5e2bd2c93b7371478638a64a0316a37c","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315270389949804?api-version=2021-04-01&t=639056766491473514&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=B2Wo4LEChxdggpYeMuDRS9SvUMnRgN6c01HaQCSanyTipVc2w8YkXQ2bTJRtgTM28c3cf7OdeRK9t9ZErg_c0M1HMhgSmRjSve95vIgrT7eag9UYA8bOX9nhUuwFCtvAn-BBcxxP1IzQepPZ3wC9cC4-GbJTifjcSFEcbr8bpmGGnmkVO7xqtCqfNSjigzj93vr0sPpmPj7Bt-mehpCN-GPhNfEcXi9pPP0To9y3dBXQpbx3X9Tq1Eenj6uOe83J8WseUIBKiAvsXF2Z-Os1cVkfeXuF3XXYE0DsQYnDPZp5bcyRHgtKfBNVyODQa0WXdwXb5CrD1yvqAQlbOuXi7g&h=m60ErLLKHFG4feFxumi1TWmwrbywyP6tbpLOSDSzNMs + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258512593969770?api-version=2021-04-01&t=639113524269146704&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=ESWtUtnc2BMjjSAqaQEEK9yFzmTm7CoKMzydrZS8hYf1LaF9BPGCMmHRWL-rW8ZxI-pcGg5wcBZygIOfhZPYeKN4ITI-0YE7zTkaoQV3x2W7zxwCO6fW0duHOu35estz0OuFXnINAdntIETKbD-e8uIq_f1PT4nolkWa62d8NhffiDAmc8K5gfKqNLS1er1Nmg2rm0bsWraTo4RFWhT_xosNAC7oV1q7-gCsy6sPazE5M3qeVzjYgBppJi4EQdrsDI_qL4prkkva2E4xVwkduuuc4YZuHfxIeE8-5uqTGetyWP3uL-3bhPNTHtaN8tsu71YMFbnVS0EClRQYUUWyFQ&h=-l9EaepUP8kpFJytOQObkgs0O_9mBrdqNlXKqFCdVFs Cache-Control: - no-cache Content-Length: - - "1706" + - "1705" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:48 GMT + - Thu, 09 Apr 2026 17:27:06 GMT Expires: - "-1" Pragma: @@ -823,23 +890,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 71225a05-766c-4322-a6f5-8a68b74bb8b1 + - 0cc11f26-8230-4287-b5a1-6dcb9b9e3b7f X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005049Z:71225a05-766c-4322-a6f5-8a68b74bb8b1 + - EASTUS:20260409T172706Z:0cc11f26-8230-4287-b5a1-6dcb9b9e3b7f X-Msedge-Ref: - - 'Ref A: 873F93681E1F4A8E9AA8675D0A50E4FE Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:50:45Z' + - 'Ref A: 6FD987B8129C4B3889C913B693B1617F Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:05Z' status: 201 Created code: 201 - duration: 3.495826209s - - id: 12 + duration: 1.14172125s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -858,10 +925,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315270389949804?api-version=2021-04-01&t=639056766491473514&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=B2Wo4LEChxdggpYeMuDRS9SvUMnRgN6c01HaQCSanyTipVc2w8YkXQ2bTJRtgTM28c3cf7OdeRK9t9ZErg_c0M1HMhgSmRjSve95vIgrT7eag9UYA8bOX9nhUuwFCtvAn-BBcxxP1IzQepPZ3wC9cC4-GbJTifjcSFEcbr8bpmGGnmkVO7xqtCqfNSjigzj93vr0sPpmPj7Bt-mehpCN-GPhNfEcXi9pPP0To9y3dBXQpbx3X9Tq1Eenj6uOe83J8WseUIBKiAvsXF2Z-Os1cVkfeXuF3XXYE0DsQYnDPZp5bcyRHgtKfBNVyODQa0WXdwXb5CrD1yvqAQlbOuXi7g&h=m60ErLLKHFG4feFxumi1TWmwrbywyP6tbpLOSDSzNMs + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258512593969770?api-version=2021-04-01&t=639113524269146704&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=ESWtUtnc2BMjjSAqaQEEK9yFzmTm7CoKMzydrZS8hYf1LaF9BPGCMmHRWL-rW8ZxI-pcGg5wcBZygIOfhZPYeKN4ITI-0YE7zTkaoQV3x2W7zxwCO6fW0duHOu35estz0OuFXnINAdntIETKbD-e8uIq_f1PT4nolkWa62d8NhffiDAmc8K5gfKqNLS1er1Nmg2rm0bsWraTo4RFWhT_xosNAC7oV1q7-gCsy6sPazE5M3qeVzjYgBppJi4EQdrsDI_qL4prkkva2E4xVwkduuuc4YZuHfxIeE8-5uqTGetyWP3uL-3bhPNTHtaN8tsu71YMFbnVS0EClRQYUUWyFQ&h=-l9EaepUP8kpFJytOQObkgs0O_9mBrdqNlXKqFCdVFs method: GET response: proto: HTTP/2.0 @@ -880,7 +947,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:19 GMT + - Thu, 09 Apr 2026 17:27:36 GMT Expires: - "-1" Pragma: @@ -892,21 +959,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d8c0ac58-239b-4a67-9940-e87312951ab7 + - 2fc5c687-7ca2-4355-b41e-40197bd8093b X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005120Z:d8c0ac58-239b-4a67-9940-e87312951ab7 + - EASTUS2:20260409T172737Z:2fc5c687-7ca2-4355-b41e-40197bd8093b X-Msedge-Ref: - - 'Ref A: 080A16A161AB4DAA8A99773405567BEF Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:19Z' + - 'Ref A: A34234C7855047668164880FD5FDD625 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:37Z' status: 200 OK code: 200 - duration: 430.261667ms - - id: 13 + duration: 81.109583ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -925,10 +992,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -936,18 +1003,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"07fb90c22e2108d8267084b0537d45db0537e355d63b43c2a77acaaff85e9f46"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:46Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:51:15.4790566Z","duration":"PT29.0041451S","correlationId":"9a3574d18953fab9ee98bd8141fbc5ab","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"60af96b86563855560236dadb71cb65762cccf78040e30b1961abb261380cd23"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:27:06Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:27:34.2271356Z","duration":"PT28.1562289S","correlationId":"5e2bd2c93b7371478638a64a0316a37c","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:20 GMT + - Thu, 09 Apr 2026 17:27:36 GMT Expires: - "-1" Pragma: @@ -959,21 +1026,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c4b3bd14-f5b5-4ef7-afa1-cfa925f01eac + - f8aa5727-8aae-49af-a16a-3f5ff2d601b3 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005120Z:c4b3bd14-f5b5-4ef7-afa1-cfa925f01eac + - EASTUS:20260409T172737Z:f8aa5727-8aae-49af-a16a-3f5ff2d601b3 X-Msedge-Ref: - - 'Ref A: 5F18A41BD2B84CB1A0356DB31F7B05A1 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:20Z' + - 'Ref A: D12B3B62361746A098DF16A5513AA92E Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:37Z' status: 200 OK code: 200 - duration: 400.621791ms - - id: 14 + duration: 143.570166ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -994,10 +1061,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d808e60%27&api-version=2021-04-01 + - 5e2bd2c93b7371478638a64a0316a37c + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d8523ca%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1007,7 +1074,7 @@ interactions: trailer: {} content_length: 429 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","name":"rg-azdtest-d808e60","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","DeleteAfter":"2026-02-03T01:50:46Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","name":"rg-azdtest-d8523ca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","DeleteAfter":"2026-04-09T18:27:06Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1016,7 +1083,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:20 GMT + - Thu, 09 Apr 2026 17:27:37 GMT Expires: - "-1" Pragma: @@ -1028,21 +1095,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a3574d18953fab9ee98bd8141fbc5ab + - 5e2bd2c93b7371478638a64a0316a37c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ae60b783-b88c-4993-a66d-44aec025b52e + - e99b90c6-dea2-4e7b-a921-01c121dd710e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005120Z:ae60b783-b88c-4993-a66d-44aec025b52e + - EASTUS2:20260409T172737Z:e99b90c6-dea2-4e7b-a921-01c121dd710e X-Msedge-Ref: - - 'Ref A: EE69B134A4994807908CCD994C90B64F Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:20Z' + - 'Ref A: 6664EACF3CC540EB8A9775546DF00D83 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:37Z' status: 200 OK code: 200 - duration: 93.740958ms - - id: 15 + duration: 179.41725ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1063,10 +1130,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 0a5cdbd24839b0d18130920c5a8eb7c5 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -1074,18 +1141,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:24 GMT + - Thu, 09 Apr 2026 17:27:41 GMT Expires: - "-1" Pragma: @@ -1097,32 +1164,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 + - 0a5cdbd24839b0d18130920c5a8eb7c5 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 03e1c8c7-128d-4360-a38d-df040214fdce + - 2524f9c7-e4ff-4403-a665-4d1a705ac8fc X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005124Z:03e1c8c7-128d-4360-a38d-df040214fdce + - EASTUS:20260409T172741Z:2524f9c7-e4ff-4403-a665-4d1a705ac8fc X-Msedge-Ref: - - 'Ref A: B3F238B1BCE34B4B915D0D87D87D988F Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:23Z' + - 'Ref A: 71C76A02892D40378D885B82DA9AFC4B Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:40Z' status: 200 OK code: 200 - duration: 1.957996167s - - id: 16 + duration: 1.514103292s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4900 + content_length: 4899 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}},"whatIfSettings":{}}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}},"whatIfSettings":{}}}' form: {} headers: Accept: @@ -1132,14 +1199,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4900" + - "4899" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/whatIf?api-version=2021-04-01 + - 0a5cdbd24839b0d18130920c5a8eb7c5 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/whatIf?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -1156,11 +1223,11 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:51:26 GMT + - Thu, 09 Apr 2026 17:27:42 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODA4RTYwOjJEMTc3MDA3OTc5Mi04N0Y4OTIyMzoyRDJBNkI6MkQ0M0QyOjJEQkNCNToyRDhGOEJERkRGNjhEQSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639056766864250354&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=Tr_VeFkirJC5KIsvcp47ALrPQuPl-HEgIjg7Pw_TW0R1d0xnlMyqdHGDdDAapYuJJsqO4fk1CFpCGonnI9xnZSH9QBIHaE1PZ29BBT9jAwjQdB-yXuvivImhxmLNLnA0BkkCrfTUZZtc8tw-I74gAZ8FSholRu-uJYo16_DyV74T7bwv0LdUKjwKvZvZ97mh225WVpF2Pf5DeMlUdVYJ5bukDKij3zfqFEl2uAr2b8zEDYkjFgNjlb33B7hYUiMQ8b8mSWwZ3nK035IgFwnF-HVfS6tH9Q9r5Yx8MUtJieA31ylGL2WJMw-RWwOZyXLAHsLw9vFvfjYxZmB7mq2AFg&h=Fc5BF_swFwLlpsVWyVfPXigcJF2TzODy2Z59CkcXDMQ + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODUyM0NBOjJEMTc3NTc1NTQ5Ny04QUM0OTlDNToyRERFNjI6MkQ0NjQ1OjJEQUJDNToyREExRDRBMDgwM0VBMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639113524628310485&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=zaqkZNqNoBGL7Zvlb2YdpfcDKPnvq9LEbK_eS8sba-5R_8X36f4wbFVlhQXjsDwfSBP459f4F3bVSYbNPgYd_YuVgJ3pu3PHjtBdo8HlQ9qbDDlbhkEhvbRmEn4ZXIczy-S9C3Rw4_PTpIrvnQB0vAHxwGA-nfvKw2XSYEJSlVXqJitZTT6MD3oDnrunafD2JMxZMK0RTB3Qu0J2M9DFqzAOG7GhoetcDCTcsUCdkUseUzxsyvT3c-tO3CImyvUpBpl8mjNMkZHA7Htxv9fTiALNQjwLj3f1nxJ4abNEME2pXnLQToqLoDxXhwy4FEPA4TpMJiFfr85Qyf1TQTtbcQ&h=D-5Ena08ubW5zzgZJEV3P65l45LcHcgqrA4IbvYt0bs Pragma: - no-cache Retry-After: @@ -1172,21 +1239,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 + - 0a5cdbd24839b0d18130920c5a8eb7c5 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 87f89223-2a6b-43d2-bcb5-8f8bdfdf68da + - 8ac499c5-de62-4645-abc5-a1d4a0803ea2 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005126Z:87f89223-2a6b-43d2-bcb5-8f8bdfdf68da + - EASTUS:20260409T172742Z:8ac499c5-de62-4645-abc5-a1d4a0803ea2 X-Msedge-Ref: - - 'Ref A: 16A305296F74430387261A242B01FBDB Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:25Z' + - 'Ref A: 9E1D809E05404808A7BA325E67DF735A Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:41Z' status: 202 Accepted code: 202 - duration: 1.281944833s - - id: 17 + duration: 1.054413709s + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1205,10 +1272,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODA4RTYwOjJEMTc3MDA3OTc5Mi04N0Y4OTIyMzoyRDJBNkI6MkQ0M0QyOjJEQkNCNToyRDhGOEJERkRGNjhEQSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639056766864250354&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=Tr_VeFkirJC5KIsvcp47ALrPQuPl-HEgIjg7Pw_TW0R1d0xnlMyqdHGDdDAapYuJJsqO4fk1CFpCGonnI9xnZSH9QBIHaE1PZ29BBT9jAwjQdB-yXuvivImhxmLNLnA0BkkCrfTUZZtc8tw-I74gAZ8FSholRu-uJYo16_DyV74T7bwv0LdUKjwKvZvZ97mh225WVpF2Pf5DeMlUdVYJ5bukDKij3zfqFEl2uAr2b8zEDYkjFgNjlb33B7hYUiMQ8b8mSWwZ3nK035IgFwnF-HVfS6tH9Q9r5Yx8MUtJieA31ylGL2WJMw-RWwOZyXLAHsLw9vFvfjYxZmB7mq2AFg&h=Fc5BF_swFwLlpsVWyVfPXigcJF2TzODy2Z59CkcXDMQ + - 0a5cdbd24839b0d18130920c5a8eb7c5 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkREODUyM0NBOjJEMTc3NTc1NTQ5Ny04QUM0OTlDNToyRERFNjI6MkQ0NjQ1OjJEQUJDNToyREExRDRBMDgwM0VBMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=639113524628310485&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=zaqkZNqNoBGL7Zvlb2YdpfcDKPnvq9LEbK_eS8sba-5R_8X36f4wbFVlhQXjsDwfSBP459f4F3bVSYbNPgYd_YuVgJ3pu3PHjtBdo8HlQ9qbDDlbhkEhvbRmEn4ZXIczy-S9C3Rw4_PTpIrvnQB0vAHxwGA-nfvKw2XSYEJSlVXqJitZTT6MD3oDnrunafD2JMxZMK0RTB3Qu0J2M9DFqzAOG7GhoetcDCTcsUCdkUseUzxsyvT3c-tO3CImyvUpBpl8mjNMkZHA7Htxv9fTiALNQjwLj3f1nxJ4abNEME2pXnLQToqLoDxXhwy4FEPA4TpMJiFfr85Qyf1TQTtbcQ&h=D-5Ena08ubW5zzgZJEV3P65l45LcHcgqrA4IbvYt0bs method: GET response: proto: HTTP/2.0 @@ -1218,7 +1285,7 @@ interactions: trailer: {} content_length: 2842 uncompressed: false - body: '{"status":"Succeeded","properties":{"correlationId":"1d2551a1aa5ff021ea518ea59b669eb5","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","changeType":"Modify","before":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","location":"eastus2","name":"rg-azdtest-d808e60","tags":{"ArrayTag":"[]","azd-env-name":"azdtest-d808e60","BoolTag":"False","DeleteAfter":"2026-02-03T01:50:46Z","IntTag":"678","ObjectTag":"{}","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","location":"eastus2","name":"rg-azdtest-d808e60","tags":{"ArrayTag":"[]","azd-env-name":"azdtest-d808e60","BoolTag":"False","DeleteAfter":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","IntTag":"678","ObjectTag":"{}","SecureObjectTag":"{}","SecureTag":"[parameters(''secureValue'')]"},"type":"Microsoft.Resources/resourceGroups"},"delta":[{"path":"tags.DeleteAfter","propertyChangeType":"Modify","before":"2026-02-03T01:50:46Z","after":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]"},{"path":"tags.SecureTag","propertyChangeType":"Create","after":"[parameters(''secureValue'')]"}]},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe","changeType":"NoChange","before":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe","kind":"StorageV2","location":"eastus2","name":"sty6wm2xz3lebfe","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"allowSharedKeyAccess":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-d808e60"},"type":"Microsoft.Storage/storageAccounts"},"after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe","kind":"StorageV2","location":"eastus2","name":"sty6wm2xz3lebfe","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"allowSharedKeyAccess":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-d808e60"},"type":"Microsoft.Storage/storageAccounts"},"delta":[]}]}}' + body: '{"status":"Succeeded","properties":{"correlationId":"0a5cdbd24839b0d18130920c5a8eb7c5","changes":[{"resourceId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","changeType":"Modify","before":{"apiVersion":"2021-04-01","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","location":"eastus2","name":"rg-azdtest-d8523ca","tags":{"ArrayTag":"[]","azd-env-name":"azdtest-d8523ca","BoolTag":"False","DeleteAfter":"2026-04-09T18:27:06Z","IntTag":"678","ObjectTag":"{}","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"after":{"apiVersion":"2021-04-01","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","location":"eastus2","name":"rg-azdtest-d8523ca","tags":{"ArrayTag":"[]","azd-env-name":"azdtest-d8523ca","BoolTag":"False","DeleteAfter":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","IntTag":"678","ObjectTag":"{}","SecureObjectTag":"{}","SecureTag":"[parameters(''secureValue'')]"},"type":"Microsoft.Resources/resourceGroups"},"delta":[{"path":"tags.DeleteAfter","propertyChangeType":"Modify","before":"2026-04-09T18:27:06Z","after":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]"},{"path":"tags.SecureTag","propertyChangeType":"Create","after":"[parameters(''secureValue'')]"}]},{"resourceId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk","changeType":"NoChange","before":{"apiVersion":"2022-05-01","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk","kind":"StorageV2","location":"eastus2","name":"stbcsg4z42wdpnk","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"allowSharedKeyAccess":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-d8523ca"},"type":"Microsoft.Storage/storageAccounts"},"after":{"apiVersion":"2022-05-01","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk","kind":"StorageV2","location":"eastus2","name":"stbcsg4z42wdpnk","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"allowSharedKeyAccess":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-d8523ca"},"type":"Microsoft.Storage/storageAccounts"},"delta":[]}]}}' headers: Cache-Control: - no-cache @@ -1227,7 +1294,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:41 GMT + - Thu, 09 Apr 2026 17:27:57 GMT Expires: - "-1" Pragma: @@ -1239,21 +1306,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 + - 0a5cdbd24839b0d18130920c5a8eb7c5 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c92a5fbd-048e-4fd8-b9cd-79066b2c4e51 + - 3d477349-75cd-4ad0-84d0-834cf895977e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005141Z:c92a5fbd-048e-4fd8-b9cd-79066b2c4e51 + - EASTUS2:20260409T172758Z:3d477349-75cd-4ad0-84d0-834cf895977e X-Msedge-Ref: - - 'Ref A: A55E0DC0DA6F417FA8222E965CC5FC6D Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:41Z' + - 'Ref A: DFA3AABF01C14E14B01D63CA9E27FC75 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:57Z' status: 200 OK code: 200 - duration: 466.501875ms - - id: 18 + duration: 340.93975ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1274,10 +1341,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d808e60%27&api-version=2021-04-01 + - 0a5cdbd24839b0d18130920c5a8eb7c5 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d8523ca%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1287,7 +1354,7 @@ interactions: trailer: {} content_length: 429 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","name":"rg-azdtest-d808e60","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","DeleteAfter":"2026-02-03T01:50:46Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","name":"rg-azdtest-d8523ca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","DeleteAfter":"2026-04-09T18:27:06Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1296,7 +1363,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:41 GMT + - Thu, 09 Apr 2026 17:27:57 GMT Expires: - "-1" Pragma: @@ -1308,21 +1375,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1d2551a1aa5ff021ea518ea59b669eb5 + - 0a5cdbd24839b0d18130920c5a8eb7c5 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c37c7345-fb6a-4904-b913-ea3fd655c1ab + - 96d76e67-f224-4325-8cf0-e17fcc1b6e3b X-Ms-Routing-Request-Id: - - WESTUS:20260203T005142Z:c37c7345-fb6a-4904-b913-ea3fd655c1ab + - EASTUS2:20260409T172758Z:96d76e67-f224-4325-8cf0-e17fcc1b6e3b X-Msedge-Ref: - - 'Ref A: 3B09586D8BB14961AAF0FC7DD88698A4 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:42Z' + - 'Ref A: B334F235347B49108D4371BBFFDAF3B3 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:27:58Z' status: 200 OK code: 200 - duration: 198.907917ms - - id: 19 + duration: 154.443459ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1343,10 +1410,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 85bfc303ce5912370331332b74e7db41 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -1354,18 +1421,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:45 GMT + - Thu, 09 Apr 2026 17:28:00 GMT Expires: - "-1" Pragma: @@ -1377,21 +1444,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 43f0c779-69b7-4fbf-bac4-9e24524a4448 + - b6fd6ca6-3354-4681-b072-d3a45ead0ecd X-Ms-Routing-Request-Id: - - WESTUS:20260203T005146Z:43f0c779-69b7-4fbf-bac4-9e24524a4448 + - EASTUS:20260409T172801Z:b6fd6ca6-3354-4681-b072-d3a45ead0ecd X-Msedge-Ref: - - 'Ref A: 4543033EB3B44CB788622DB7154A9E8F Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:44Z' + - 'Ref A: D6499902D70C4B5483803274545F9C43 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:00Z' status: 200 OK code: 200 - duration: 1.676345833s - - id: 20 + duration: 1.22431075s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1412,10 +1479,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 85bfc303ce5912370331332b74e7db41 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1423,18 +1490,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 963717 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","location":"eastus2","name":"azdtest-d8523ca-1775755497","properties":{"correlationId":"5e2bd2c93b7371478638a64a0316a37c","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceName":"rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.1562289S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:27:06Z"},"environmentName":{"type":"String","value":"azdtest-d8523ca"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:27:34.2271356Z"},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"60af96b86563855560236dadb71cb65762cccf78040e30b1961abb261380cd23"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "963717" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:51 GMT + - Thu, 09 Apr 2026 17:28:04 GMT Expires: - "-1" Pragma: @@ -1446,21 +1513,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bf847a4f-cb05-4728-bdad-5f4bc965ac21 + - a8da959b-739c-433f-a9cf-7c0406cb7fdb X-Ms-Routing-Request-Id: - - WESTUS:20260203T005152Z:bf847a4f-cb05-4728-bdad-5f4bc965ac21 + - EASTUS:20260409T172805Z:a8da959b-739c-433f-a9cf-7c0406cb7fdb X-Msedge-Ref: - - 'Ref A: B6BF2885036241C0BFC618E7FEF0347B Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:46Z' + - 'Ref A: CB9F827E2AAE41F5963024D350C04DD6 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:01Z' status: 200 OK code: 200 - duration: 5.449099667s - - id: 21 + duration: 3.598848292s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1479,10 +1546,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 85bfc303ce5912370331332b74e7db41 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1490,18 +1557,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 847664 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "847664" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:53 GMT + - Thu, 09 Apr 2026 17:28:07 GMT Expires: - "-1" Pragma: @@ -1513,21 +1580,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 74d4a422-4a9c-400e-baf2-253d2bc07623 + - 7d3dfae2-7ce6-4f4b-9a1f-210c9ef1d885 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005154Z:74d4a422-4a9c-400e-baf2-253d2bc07623 + - EASTUS2:20260409T172807Z:7d3dfae2-7ce6-4f4b-9a1f-210c9ef1d885 X-Msedge-Ref: - - 'Ref A: AB05EE97C1CF489984329788375E33D7 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:52Z' + - 'Ref A: 05E3C45522D44CB399C47E24323C4DB6 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:05Z' status: 200 OK code: 200 - duration: 1.831746583s - - id: 22 + duration: 2.425743791s + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1546,10 +1613,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 85bfc303ce5912370331332b74e7db41 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1557,18 +1624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 254797 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","location":"eastus2","name":"azdtest-d808e60-1770079792","properties":{"correlationId":"9a3574d18953fab9ee98bd8141fbc5ab","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceName":"rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT29.0041451S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:46Z"},"environmentName":{"type":"String","value":"azdtest-d808e60"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-03T00:51:15.4790566Z"},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"07fb90c22e2108d8267084b0537d45db0537e355d63b43c2a77acaaff85e9f46"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "254797" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:56 GMT + - Thu, 09 Apr 2026 17:28:08 GMT Expires: - "-1" Pragma: @@ -1580,21 +1647,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - aa059366-fd3c-4dc8-ac46-e1dcb4d37883 + - 24b35a24-aa5d-47f3-96e3-b0fafad0ae5c X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005156Z:aa059366-fd3c-4dc8-ac46-e1dcb4d37883 + - EASTUS2:20260409T172809Z:24b35a24-aa5d-47f3-96e3-b0fafad0ae5c X-Msedge-Ref: - - 'Ref A: 866154B2C28C4A74AB0B8F1924AC7548 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:54Z' + - 'Ref A: F27392AC716A42A38E07EF019CE45E16 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:07Z' status: 200 OK code: 200 - duration: 2.611734542s - - id: 23 + duration: 1.457565041s + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 85bfc303ce5912370331332b74e7db41 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:28:09 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 85bfc303ce5912370331332b74e7db41 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 703da891-64fc-428c-baee-e5fb43d7b802 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172810Z:703da891-64fc-428c-baee-e5fb43d7b802 + X-Msedge-Ref: + - 'Ref A: 8FA45AC687E14FC98FC5A7257B4AA9F1 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:09Z' + status: 200 OK + code: 200 + duration: 996.815667ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1613,10 +1747,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - 85bfc303ce5912370331332b74e7db41 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1624,18 +1758,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:57 GMT + - Thu, 09 Apr 2026 17:28:10 GMT Expires: - "-1" Pragma: @@ -1647,32 +1781,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - df4fb502-c7c9-442f-b6a1-d970f4e82a87 + - df56a2e9-e5ba-4587-a7e1-b483ee467fbd X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005157Z:df4fb502-c7c9-442f-b6a1-d970f4e82a87 + - EASTUS2:20260409T172811Z:df56a2e9-e5ba-4587-a7e1-b483ee467fbd X-Msedge-Ref: - - 'Ref A: 0B9AAD51F039474A9E9C64460692189B Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:57Z' + - 'Ref A: C0D03E3A8D1145CEBA91989A9DBE3F74 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:10Z' status: 200 OK code: 200 - duration: 545.804ms - - id: 24 + duration: 674.829416ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4547 + content_length: 4546 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' form: {} headers: Accept: @@ -1682,13 +1816,13 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4547" + - "4546" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -1697,18 +1831,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5124 + content_length: 5122 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"9492071610990153753\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"15782242401159728732\"}}}","templateHash":"15782242401159728732"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"6602963692698314495\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"4488259817381607990\"}}}","templateHash":"4488259817381607990"}' headers: Cache-Control: - no-cache Content-Length: - - "5124" + - "5122" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:57 GMT + - Thu, 09 Apr 2026 17:28:10 GMT Expires: - "-1" Pragma: @@ -1720,19 +1854,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 03044eb9-61f4-4010-961d-06dc6905ef0b + - bb0f12ed-ba63-4926-b29f-3bc02198c7ee X-Ms-Routing-Request-Id: - - WESTUS:20260203T005157Z:03044eb9-61f4-4010-961d-06dc6905ef0b + - EASTUS:20260409T172811Z:bb0f12ed-ba63-4926-b29f-3bc02198c7ee X-Msedge-Ref: - - 'Ref A: 178371AD45BE4893A822CE7D94D99D49 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:57Z' + - 'Ref A: 194143C1BD684F7F954DC56E0FC91574 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:11Z' status: 200 OK code: 200 - duration: 129.710041ms - - id: 25 + duration: 84.168917ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1751,10 +1885,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60?api-version=2025-03-01 + - 85bfc303ce5912370331332b74e7db41 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca?api-version=2025-03-01 method: HEAD response: proto: HTTP/2.0 @@ -1771,7 +1905,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:51:57 GMT + - Thu, 09 Apr 2026 17:28:10 GMT Expires: - "-1" Pragma: @@ -1783,21 +1917,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 44fc2bfb763d1e2a0a720845af46cf3c + - 85bfc303ce5912370331332b74e7db41 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6ce7d595-6e38-40c3-9bb3-65acd9bd2f7b + - dec81e7c-1e4b-4a01-ab3b-301fe12ee10f X-Ms-Routing-Request-Id: - - WESTUS:20260203T005158Z:6ce7d595-6e38-40c3-9bb3-65acd9bd2f7b + - EASTUS2:20260409T172811Z:dec81e7c-1e4b-4a01-ab3b-301fe12ee10f X-Msedge-Ref: - - 'Ref A: AA8274877A8A4A03A9B32C4CF86F2890 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:51:57Z' + - 'Ref A: 01F79C73C8C342C4B66E1B2D1524F22F Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:11Z' status: 204 No Content code: 204 - duration: 206.316625ms - - id: 26 + duration: 79.710125ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1818,10 +1952,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -1829,18 +1963,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:01 GMT + - Thu, 09 Apr 2026 17:28:13 GMT Expires: - "-1" Pragma: @@ -1852,21 +1986,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9f0b8268-2f1e-48b7-87d8-4429aba5adae + - 8afde359-ab12-4fa8-8f1c-1b49fe26417c X-Ms-Routing-Request-Id: - - WESTUS:20260203T005202Z:9f0b8268-2f1e-48b7-87d8-4429aba5adae + - EASTUS:20260409T172814Z:8afde359-ab12-4fa8-8f1c-1b49fe26417c X-Msedge-Ref: - - 'Ref A: E9EA8BF27F6D473DA2D30B2F2403A85C Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:00Z' + - 'Ref A: 9E5E5B613A9D409A844513CD3C546091 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:13Z' status: 200 OK code: 200 - duration: 2.177261292s - - id: 27 + duration: 1.006072708s + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1887,10 +2021,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1898,18 +2032,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 963717 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","location":"eastus2","name":"azdtest-d8523ca-1775755497","properties":{"correlationId":"5e2bd2c93b7371478638a64a0316a37c","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceName":"rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.1562289S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:27:06Z"},"environmentName":{"type":"String","value":"azdtest-d8523ca"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:27:34.2271356Z"},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"60af96b86563855560236dadb71cb65762cccf78040e30b1961abb261380cd23"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "963717" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:07 GMT + - Thu, 09 Apr 2026 17:28:17 GMT Expires: - "-1" Pragma: @@ -1921,21 +2055,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bb8241d5-45ae-4a66-97a5-31df1b6f4ad8 + - 546cec05-2493-434e-8643-f285d5b69d8c X-Ms-Routing-Request-Id: - - WESTUS:20260203T005208Z:bb8241d5-45ae-4a66-97a5-31df1b6f4ad8 + - EASTUS:20260409T172818Z:546cec05-2493-434e-8643-f285d5b69d8c X-Msedge-Ref: - - 'Ref A: 128D6B939DFC4BA0B497392C91889E6F Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:02Z' + - 'Ref A: B77FF15FA23C426AB25311977A1E5480 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:14Z' status: 200 OK code: 200 - duration: 5.537372167s - - id: 28 + duration: 3.69757975s + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1954,10 +2088,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1965,18 +2099,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 847664 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "847664" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:09 GMT + - Thu, 09 Apr 2026 17:28:20 GMT Expires: - "-1" Pragma: @@ -1988,21 +2122,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 30929252-2b86-4506-8bee-15e3473efe55 + - 6f0ec09f-8052-4fec-93bb-91bf83c13393 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005209Z:30929252-2b86-4506-8bee-15e3473efe55 + - EASTUS:20260409T172820Z:6f0ec09f-8052-4fec-93bb-91bf83c13393 X-Msedge-Ref: - - 'Ref A: 741F6E9F9743414BA9949317D84A58F9 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:08Z' + - 'Ref A: E16312E4877E4FB0BDB8FA57ABEDA58B Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:18Z' status: 200 OK code: 200 - duration: 1.278822209s - - id: 29 + duration: 2.46884375s + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2021,10 +2155,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2032,18 +2166,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 254797 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","location":"eastus2","name":"azdtest-d808e60-1770079792","properties":{"correlationId":"9a3574d18953fab9ee98bd8141fbc5ab","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceName":"rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT29.0041451S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:46Z"},"environmentName":{"type":"String","value":"azdtest-d808e60"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-03T00:51:15.4790566Z"},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"07fb90c22e2108d8267084b0537d45db0537e355d63b43c2a77acaaff85e9f46"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "254797" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:11 GMT + - Thu, 09 Apr 2026 17:28:21 GMT Expires: - "-1" Pragma: @@ -2055,21 +2189,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 97f145ec-f1ea-4aae-ae17-253b38138f6e + - 59d0a4df-f3a7-4fb3-9c1a-f7dd16951b04 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005211Z:97f145ec-f1ea-4aae-ae17-253b38138f6e + - EASTUS:20260409T172822Z:59d0a4df-f3a7-4fb3-9c1a-f7dd16951b04 X-Msedge-Ref: - - 'Ref A: 941B36A9F32543F3B30647C66045E57E Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:09Z' + - 'Ref A: 257EE48DD51E44468E9D88D1A0740C7B Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:20Z' status: 200 OK code: 200 - duration: 2.265140125s - - id: 30 + duration: 1.489231s + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:28:22 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 57d95f5986a109044a5ef29ac008d0ed + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 86c94162-7981-4a37-a49d-b3f3da1bc138 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172823Z:86c94162-7981-4a37-a49d-b3f3da1bc138 + X-Msedge-Ref: + - 'Ref A: F2F03524F62141E9B6691F2F22BE6EE5 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:22Z' + status: 200 OK + code: 200 + duration: 743.726208ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2088,10 +2289,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2099,18 +2300,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:12 GMT + - Thu, 09 Apr 2026 17:28:23 GMT Expires: - "-1" Pragma: @@ -2122,32 +2323,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 10e551ba-e612-420b-865c-7784fa654ad0 + - 2cf7cc73-563d-4c1c-9f9d-35a8a1d864c2 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005213Z:10e551ba-e612-420b-865c-7784fa654ad0 + - EASTUS:20260409T172823Z:2cf7cc73-563d-4c1c-9f9d-35a8a1d864c2 X-Msedge-Ref: - - 'Ref A: 0BCDA4DCA7C2477DACB6D32C4B681525 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:12Z' + - 'Ref A: B1E7314687ED4904929A0CEB5AE89809 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:23Z' status: 200 OK code: 200 - duration: 1.042074s - - id: 31 + duration: 449.739208ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4547 + content_length: 4546 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' form: {} headers: Accept: @@ -2157,13 +2358,13 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4547" + - "4546" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -2172,18 +2373,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5124 + content_length: 5122 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"9492071610990153753\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"15782242401159728732\"}}}","templateHash":"15782242401159728732"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"6602963692698314495\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"4488259817381607990\"}}}","templateHash":"4488259817381607990"}' headers: Cache-Control: - no-cache Content-Length: - - "5124" + - "5122" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:12 GMT + - Thu, 09 Apr 2026 17:28:23 GMT Expires: - "-1" Pragma: @@ -2195,30 +2396,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 474bba41-ef9a-4d29-88f1-9b0b25f79d18 + - cb3ddb7a-2f33-4df9-af86-d26fd5a49ef9 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005213Z:474bba41-ef9a-4d29-88f1-9b0b25f79d18 + - EASTUS:20260409T172823Z:cb3ddb7a-2f33-4df9-af86-d26fd5a49ef9 X-Msedge-Ref: - - 'Ref A: D28EFBA89A65495BBFDC405F541587BB Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:13Z' + - 'Ref A: 1BB4F9633E4646D4BC5862078AA24E5F Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:23Z' status: 200 OK code: 200 - duration: 136.058583ms - - id: 32 + duration: 93.994875ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5037 + content_length: 5036 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"}}' form: {} headers: Accept: @@ -2228,14 +2429,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5037" + - "5036" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/validate?api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/validate?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -2243,18 +2444,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2119 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:52:13Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:52:13.7074059Z","duration":"PT0S","correlationId":"1e7870bb04bde3afe12035dc6af7b8c5","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:28:25Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:28:25.5187093Z","duration":"PT0S","correlationId":"57d95f5986a109044a5ef29ac008d0ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2120" + - "2119" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:14 GMT + - Thu, 09 Apr 2026 17:28:25 GMT Expires: - "-1" Pragma: @@ -2266,32 +2467,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - bf01e2a1-e7df-4ac2-bf6b-7338a290b58c + - 8f7c1636-b12d-451c-b849-8f91939dfb3b X-Ms-Routing-Request-Id: - - WESTUS:20260203T005215Z:bf01e2a1-e7df-4ac2-bf6b-7338a290b58c + - EASTUS:20260409T172826Z:8f7c1636-b12d-451c-b849-8f91939dfb3b X-Msedge-Ref: - - 'Ref A: 6A5309A336CF45E2ABDEC5AB1C8E9395 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:13Z' + - 'Ref A: 3A6799DD5826437AAA20326B5251D8BA Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:25Z' status: 200 OK code: 200 - duration: 1.774746958s - - id: 33 + duration: 828.11875ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5037 + content_length: 5036 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"}}' form: {} headers: Accept: @@ -2301,14 +2502,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5037" + - "5036" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2316,20 +2517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1707 + content_length: 1706 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:52:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:52:16.0533237Z","duration":"PT0.0004397S","correlationId":"1e7870bb04bde3afe12035dc6af7b8c5","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:28:26Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:28:26.4605265Z","duration":"PT0.0008125S","correlationId":"57d95f5986a109044a5ef29ac008d0ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315269494224567?api-version=2021-04-01&t=639056767394127125&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=ciRsKzKuDl1Xxj90mNuiXXJwPRoZYDCZb6vR25LTa0RBGUHUHnNl0VBLlQp5zvMd5lk_Glnja0pzg-GAY6qqs8VnkM094mGT2OaknbehPsxoaGOaJA3aZoOh7Lx6MpCESUOW2zfWbM7SBKqN8jmh3y7AULHzlUh9TuAadOGdJBo_WJLtreJsldwR8lspongqxK8lbUP9AjJj41YvQhf8ymuhu7t5o1kVfMJbzok8Hadw_V9T1WOyzl2OEKrdYZvg5BcXFSE3EGbDpnM1b-GFfH9BjkkN9ZI4BL8lkI0umQ1x3dfZNzmJvu3ovPDA47XvbvuYCmSpKdl3K5jJ4xiPBg&h=zc55qxHuz2ipYSTkBtuzaVml5qR-RyG8i-PZRHhg8sg + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258511790049931?api-version=2021-04-01&t=639113525068198960&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=lUP6DqyaQLpTRXyfEPe0rTOZnfx7_WRk7SSiDIaq7b_ABF8yVEC_oIXYh19PPcFBAYWYZ1Sp6Sj9GEG98lbk_fbiQJMDyP_JucPKtUYaAmR0rYudOpFQcgJvyd3rdYq3wRqCi9nWA4Az5ALfXUSJsRPromYu2Sc-5pSLjZTqYuuJwa_k8ziK-5a71dHSZGEZmjXmKaL9fqsx4nYqsAKsXX983n5AUu2zRSsqffZeM0qhbBdp5Eg_FE63ctlepqHvWF9_mFUlYqmEI2jLrThFtZiaBLyOpxfmeK4-9IdbSfKoeZxL3y1I0NB0Im2fdfZCU4BYOvEhtTu9_qhu2nWR8g&h=eoVkHFc5dfDfbE2Wso8Xoh3w0OzSgRMdCJuXyEIyL54 Cache-Control: - no-cache Content-Length: - - "1707" + - "1706" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:18 GMT + - Thu, 09 Apr 2026 17:28:26 GMT Expires: - "-1" Pragma: @@ -2341,23 +2542,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 4d65c0a0-fa1c-4772-9d08-13a36bfee1e8 + - da38335f-b5d6-471a-a4f2-d5a624c77967 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005219Z:4d65c0a0-fa1c-4772-9d08-13a36bfee1e8 + - EASTUS2:20260409T172826Z:da38335f-b5d6-471a-a4f2-d5a624c77967 X-Msedge-Ref: - - 'Ref A: 4367F41854F54656A437E7D374743743 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:15Z' + - 'Ref A: C5FC1D4B73214477A0F916059A88F658 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:26Z' status: 200 OK code: 200 - duration: 4.351383959s - - id: 34 + duration: 745.059083ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2376,10 +2577,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315269494224567?api-version=2021-04-01&t=639056767394127125&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=ciRsKzKuDl1Xxj90mNuiXXJwPRoZYDCZb6vR25LTa0RBGUHUHnNl0VBLlQp5zvMd5lk_Glnja0pzg-GAY6qqs8VnkM094mGT2OaknbehPsxoaGOaJA3aZoOh7Lx6MpCESUOW2zfWbM7SBKqN8jmh3y7AULHzlUh9TuAadOGdJBo_WJLtreJsldwR8lspongqxK8lbUP9AjJj41YvQhf8ymuhu7t5o1kVfMJbzok8Hadw_V9T1WOyzl2OEKrdYZvg5BcXFSE3EGbDpnM1b-GFfH9BjkkN9ZI4BL8lkI0umQ1x3dfZNzmJvu3ovPDA47XvbvuYCmSpKdl3K5jJ4xiPBg&h=zc55qxHuz2ipYSTkBtuzaVml5qR-RyG8i-PZRHhg8sg + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258511790049931?api-version=2021-04-01&t=639113525068198960&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=lUP6DqyaQLpTRXyfEPe0rTOZnfx7_WRk7SSiDIaq7b_ABF8yVEC_oIXYh19PPcFBAYWYZ1Sp6Sj9GEG98lbk_fbiQJMDyP_JucPKtUYaAmR0rYudOpFQcgJvyd3rdYq3wRqCi9nWA4Az5ALfXUSJsRPromYu2Sc-5pSLjZTqYuuJwa_k8ziK-5a71dHSZGEZmjXmKaL9fqsx4nYqsAKsXX983n5AUu2zRSsqffZeM0qhbBdp5Eg_FE63ctlepqHvWF9_mFUlYqmEI2jLrThFtZiaBLyOpxfmeK4-9IdbSfKoeZxL3y1I0NB0Im2fdfZCU4BYOvEhtTu9_qhu2nWR8g&h=eoVkHFc5dfDfbE2Wso8Xoh3w0OzSgRMdCJuXyEIyL54 method: GET response: proto: HTTP/2.0 @@ -2398,7 +2599,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:49 GMT + - Thu, 09 Apr 2026 17:28:56 GMT Expires: - "-1" Pragma: @@ -2410,21 +2611,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c2dccb0b-2eb9-4290-8610-d69f5047be45 + - 296b499c-db85-4016-83e5-3c0ed6d29867 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005250Z:c2dccb0b-2eb9-4290-8610-d69f5047be45 + - EASTUS2:20260409T172857Z:296b499c-db85-4016-83e5-3c0ed6d29867 X-Msedge-Ref: - - 'Ref A: 97C6EAF87A03475CB180E55A015AEB72 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:50Z' + - 'Ref A: F01DAD3A935C412B80D669CB18F2B139 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:56Z' status: 200 OK code: 200 - duration: 361.820958ms - - id: 35 + duration: 147.164125ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2443,10 +2644,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2454,18 +2655,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2748 + content_length: 2745 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:52:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:52:30.4836579Z","duration":"PT14.4303342S","correlationId":"1e7870bb04bde3afe12035dc6af7b8c5","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:28:26Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:28:30.246602Z","duration":"PT3.7860755S","correlationId":"57d95f5986a109044a5ef29ac008d0ed","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2748" + - "2745" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:50 GMT + - Thu, 09 Apr 2026 17:28:56 GMT Expires: - "-1" Pragma: @@ -2477,21 +2678,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 97658a18-3c1e-4917-a651-30fd7b7411e1 + - f8064d95-3c61-4fe9-871e-ff834c40d35f X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005250Z:97658a18-3c1e-4917-a651-30fd7b7411e1 + - EASTUS2:20260409T172857Z:f8064d95-3c61-4fe9-871e-ff834c40d35f X-Msedge-Ref: - - 'Ref A: B17075D6BDBE42DB8A2ECAF0D1032C32 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:50Z' + - 'Ref A: 587F735426644F2BA8FC381AB63492F3 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:57Z' status: 200 OK code: 200 - duration: 278.149291ms - - id: 36 + duration: 102.921209ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2512,10 +2713,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d808e60%27&api-version=2021-04-01 + - 57d95f5986a109044a5ef29ac008d0ed + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d8523ca%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2525,7 +2726,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","name":"rg-azdtest-d808e60","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","DeleteAfter":"2026-02-03T01:52:15Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","name":"rg-azdtest-d8523ca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","DeleteAfter":"2026-04-09T18:28:26Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2534,7 +2735,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:50 GMT + - Thu, 09 Apr 2026 17:28:56 GMT Expires: - "-1" Pragma: @@ -2546,21 +2747,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e7870bb04bde3afe12035dc6af7b8c5 + - 57d95f5986a109044a5ef29ac008d0ed X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6efa6c02-df52-4553-9502-c947b0dac291 + - 30b10a0d-8677-4bcf-b7d0-39da38bc406e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005250Z:6efa6c02-df52-4553-9502-c947b0dac291 + - EASTUS:20260409T172857Z:30b10a0d-8677-4bcf-b7d0-39da38bc406e X-Msedge-Ref: - - 'Ref A: EA3D92168AF14A8990E928586C88B0B8 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:50Z' + - 'Ref A: D0B61AA668E34348816EF71D76F04270 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:57Z' status: 200 OK code: 200 - duration: 132.382667ms - - id: 37 + duration: 146.560125ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2581,10 +2782,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - d275be5eee54065c2c73311044625f7a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -2592,18 +2793,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:54 GMT + - Thu, 09 Apr 2026 17:28:59 GMT Expires: - "-1" Pragma: @@ -2615,21 +2816,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - aa5ad1de-aeba-4ba3-aec2-35fe569123ab + - 890dc3a7-9f2c-46e8-857f-9fb07592c4bf X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005255Z:aa5ad1de-aeba-4ba3-aec2-35fe569123ab + - EASTUS2:20260409T172900Z:890dc3a7-9f2c-46e8-857f-9fb07592c4bf X-Msedge-Ref: - - 'Ref A: 72813C0B5B7D433284A3536C6F8894FE Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:53Z' + - 'Ref A: B6B28832A07541EA91B2D431D8111CC9 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:28:59Z' status: 200 OK code: 200 - duration: 1.91578525s - - id: 38 + duration: 970.1835ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2650,10 +2851,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - d275be5eee54065c2c73311044625f7a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2661,18 +2862,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 963716 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","location":"eastus2","name":"azdtest-d8523ca-1775755497","properties":{"correlationId":"57d95f5986a109044a5ef29ac008d0ed","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceName":"rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT3.7860755S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:28:26Z"},"environmentName":{"type":"String","value":"azdtest-d8523ca"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:28:30.246602Z"},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "963716" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:01 GMT + - Thu, 09 Apr 2026 17:29:03 GMT Expires: - "-1" Pragma: @@ -2684,21 +2885,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a02b3f77-8536-48c1-a0ce-bd22e8162ccd + - 5a08d1ac-d711-43e2-85fd-a3bb39e32aa8 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005301Z:a02b3f77-8536-48c1-a0ce-bd22e8162ccd + - EASTUS2:20260409T172903Z:5a08d1ac-d711-43e2-85fd-a3bb39e32aa8 X-Msedge-Ref: - - 'Ref A: 0FBA1F24A54749FF974CEFB079D0F3F9 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:52:55Z' + - 'Ref A: D4AF50D24F174474BF3B66F59E9AE614 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:00Z' status: 200 OK code: 200 - duration: 5.951368333s - - id: 39 + duration: 3.152741042s + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2717,10 +2918,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - d275be5eee54065c2c73311044625f7a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2728,18 +2929,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 847664 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "847664" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:03 GMT + - Thu, 09 Apr 2026 17:29:05 GMT Expires: - "-1" Pragma: @@ -2751,21 +2952,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b5aee07d-64c2-4706-94f0-951e93667053 + - 8daa1dfb-5111-412f-8dc7-ba7529b97bf6 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005304Z:b5aee07d-64c2-4706-94f0-951e93667053 + - EASTUS2:20260409T172906Z:8daa1dfb-5111-412f-8dc7-ba7529b97bf6 X-Msedge-Ref: - - 'Ref A: 9E0E08A4027F4231A952A69C5B0C5FC9 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:02Z' + - 'Ref A: 8DF2C581D894457FA651E72C5D1F9868 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:03Z' status: 200 OK code: 200 - duration: 2.435515792s - - id: 40 + duration: 2.726065375s + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2784,10 +2985,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - d275be5eee54065c2c73311044625f7a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2795,18 +2996,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 252655 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","location":"eastus2","name":"azdtest-d808e60-1770079792","properties":{"correlationId":"1e7870bb04bde3afe12035dc6af7b8c5","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceName":"rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT14.4303342S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:52:15Z"},"environmentName":{"type":"String","value":"azdtest-d808e60"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-03T00:52:30.4836579Z"},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "252655" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:05 GMT + - Thu, 09 Apr 2026 17:29:07 GMT Expires: - "-1" Pragma: @@ -2818,21 +3019,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cac04d10-fe0a-4f32-82de-fd469e6c0b0a + - e7022a5c-4bf5-422b-86c0-fd45a1d79dfb X-Ms-Routing-Request-Id: - - WESTUS:20260203T005306Z:cac04d10-fe0a-4f32-82de-fd469e6c0b0a + - EASTUS2:20260409T172908Z:e7022a5c-4bf5-422b-86c0-fd45a1d79dfb X-Msedge-Ref: - - 'Ref A: 58D4B3A4E4464ADB92B203370BC92FF8 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:04Z' + - 'Ref A: 701BFF9300C046D7BCAD3B76D444643D Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:06Z' status: 200 OK code: 200 - duration: 2.098958458s - - id: 41 + duration: 1.590651875s + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2851,10 +3052,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - d275be5eee54065c2c73311044625f7a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2862,18 +3063,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:07 GMT + - Thu, 09 Apr 2026 17:29:08 GMT Expires: - "-1" Pragma: @@ -2885,48 +3086,115 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 61681414-d06b-4a76-ab18-68f7340e882f + - 57bff7fb-f38f-4e2a-bf15-14d9fedf86e3 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005307Z:61681414-d06b-4a76-ab18-68f7340e882f + - EASTUS2:20260409T172909Z:57bff7fb-f38f-4e2a-bf15-14d9fedf86e3 X-Msedge-Ref: - - 'Ref A: E2C8BD315240480487C1067F52B0E3DB Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:06Z' + - 'Ref A: 3931909B37D94AB992AD99EA916B6833 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:08Z' status: 200 OK code: 200 - duration: 1.378870583s - - id: 42 + duration: 1.01282325s + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4547 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4547" - Content-Type: + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - d275be5eee54065c2c73311044625f7a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:29:09 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - d275be5eee54065c2c73311044625f7a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 303cf356-9721-4660-a035-62c62520c0fa + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T172909Z:303cf356-9721-4660-a035-62c62520c0fa + X-Msedge-Ref: + - 'Ref A: A14AB64FA184465CA38662D47B4EEE22 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:09Z' + status: 200 OK + code: 200 + duration: 478.872ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 4546 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4546" + Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -2935,18 +3203,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5124 + content_length: 5122 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"9492071610990153753\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"15782242401159728732\"}}}","templateHash":"15782242401159728732"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"6602963692698314495\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"4488259817381607990\"}}}","templateHash":"4488259817381607990"}' headers: Cache-Control: - no-cache Content-Length: - - "5124" + - "5122" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:07 GMT + - Thu, 09 Apr 2026 17:29:09 GMT Expires: - "-1" Pragma: @@ -2958,19 +3226,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 8409b7e0-6b10-4116-99fc-63136cf45df2 + - d43543f8-c831-4955-839a-22ffb5f12a24 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005308Z:8409b7e0-6b10-4116-99fc-63136cf45df2 + - EASTUS:20260409T172909Z:d43543f8-c831-4955-839a-22ffb5f12a24 X-Msedge-Ref: - - 'Ref A: 00DBF668FBF34A1783BBA3B5AEBBD1F6 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:07Z' + - 'Ref A: A08870F0B64C4F63A78593DEC5504D5E Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:09Z' status: 200 OK code: 200 - duration: 167.731ms - - id: 43 + duration: 82.674917ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2989,10 +3257,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60?api-version=2025-03-01 + - d275be5eee54065c2c73311044625f7a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca?api-version=2025-03-01 method: HEAD response: proto: HTTP/2.0 @@ -3009,7 +3277,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:53:07 GMT + - Thu, 09 Apr 2026 17:29:09 GMT Expires: - "-1" Pragma: @@ -3021,21 +3289,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d5f3882fccfda08f3b34dae4a3f3ac20 + - d275be5eee54065c2c73311044625f7a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0683c55d-5043-49c4-a36b-7733c85757d9 + - a7544595-0332-4507-b5f0-8f14b685a36c X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005308Z:0683c55d-5043-49c4-a36b-7733c85757d9 + - EASTUS2:20260409T172910Z:a7544595-0332-4507-b5f0-8f14b685a36c X-Msedge-Ref: - - 'Ref A: CA86900C06394EE38B1F7F30653CA432 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:08Z' + - 'Ref A: A590EF74245D4329B2807D3624B53327 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:10Z' status: 204 No Content code: 204 - duration: 151.364084ms - - id: 44 + duration: 79.202667ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3056,10 +3324,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 2661974aff233f61177418c4ae8d0d93 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -3067,18 +3335,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:11 GMT + - Thu, 09 Apr 2026 17:29:12 GMT Expires: - "-1" Pragma: @@ -3090,32 +3358,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 + - 2661974aff233f61177418c4ae8d0d93 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 784e615b-5a11-4ba8-bc1b-ea7e7eeca042 + - 8e041d7b-1d26-4b9a-81c9-c0d8d7dd6efa X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005312Z:784e615b-5a11-4ba8-bc1b-ea7e7eeca042 + - EASTUS2:20260409T172912Z:8e041d7b-1d26-4b9a-81c9-c0d8d7dd6efa X-Msedge-Ref: - - 'Ref A: 50F58104C8FB4729A9576F0149B2945E Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:10Z' + - 'Ref A: BB6C35C2AB854B509F15572A97D9F991 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:11Z' status: 200 OK code: 200 - duration: 1.723399083s - - id: 45 + duration: 837.678708ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5037 + content_length: 5036 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"}}' form: {} headers: Accept: @@ -3125,14 +3393,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5037" + - "5036" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/validate?api-version=2021-04-01 + - 2661974aff233f61177418c4ae8d0d93 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/validate?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -3142,7 +3410,7 @@ interactions: trailer: {} content_length: 2119 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:12Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:53:13.080084Z","duration":"PT0S","correlationId":"d8a6a649e9af41b5af4ea2fdf5d94864","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:29:14Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:29:14.3440621Z","duration":"PT0S","correlationId":"2661974aff233f61177418c4ae8d0d93","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache @@ -3151,7 +3419,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:14 GMT + - Thu, 09 Apr 2026 17:29:14 GMT Expires: - "-1" Pragma: @@ -3163,32 +3431,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 + - 2661974aff233f61177418c4ae8d0d93 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 4117806a-8a96-4247-a4ca-ed00d16d3417 + - fa9b2391-25a7-409b-b4ea-563eb4c9abd6 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005315Z:4117806a-8a96-4247-a4ca-ed00d16d3417 + - EASTUS2:20260409T172914Z:fa9b2391-25a7-409b-b4ea-563eb4c9abd6 X-Msedge-Ref: - - 'Ref A: 1B8B2AD04A564963800E91B3BE63EB04 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:12Z' + - 'Ref A: E502161934AD4BA79FA784DB4C63C3B5 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:14Z' status: 200 OK code: 200 - duration: 3.120620125s - - id: 46 + duration: 719.953834ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5037 + content_length: 5036 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d808e60","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d8523ca","reference":null},"intTagValue":{"value":1989,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"}}' form: {} headers: Accept: @@ -3198,14 +3466,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5037" + - "5036" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 2661974aff233f61177418c4ae8d0d93 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -3213,20 +3481,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1707 + content_length: 1706 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:53:16.2427513Z","duration":"PT0.0004702S","correlationId":"d8a6a649e9af41b5af4ea2fdf5d94864","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:29:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:29:15.1998036Z","duration":"PT0.0005849S","correlationId":"2661974aff233f61177418c4ae8d0d93","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315268892318391?api-version=2021-04-01&t=639056767988678403&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GtXgdiRZRHfw44qKhR8eh-HpUj-7FHphUStS5EZ2yACSnAsfLSscD4NwNYExS-4yiQPehD2AiPxHfqJ6ygAtcPpz4KcBsELYBFIEgP3iddAal-Q3nIN9KlRZ-ELfgzQwZD1qt1W8xoscOrtccprFpvglLN0NtvK2PFPB6YA2pXE0B3L1l9MsHswuYoVFXvtgywY7lmpoGUAF-4b-dZ3IaNyEVxOXZ_H4Mbls0Jo6tWxpdZ8bZrEsSifvo2nDBAy8CS2vKlNgnxf6Pd_R1D1wwDG2dB6c5cTprlbCS0_amm5QExta5D153HlBH-HZhaX1rXpaV0tm-rIZGbT1P2hZyQ&h=qR7X0MWR3Ghcmh5MPRG2zGlQWuy2r5UXL47fwJ_ok4Q + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258511302697360?api-version=2021-04-01&t=639113525559185513&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=O6Fn1Ja7J719rnN3E5PBn3HSHE1PJ0y16KDmL5bVVh6aWaACCYJSl8D_H_TQClZqi-XoQ3oGObR70MaG_cEnWiOsmIiy-mr1FCf963jKwKFbuG4Zm5A7Ax70pAyfQkDE2G5bV_FNgRl1MUgjMOq7bTzR1f6w2KdGJhRfjbcf_NgyDBlrv859yE5h6nUfl800t4yk6b0YiBTXy6UjapB1FKv5mPAOQgDpZXkjCMli_W71V9pLk-Sz8FIc156AECxT5LAJ64UDdHUMySE1eGEMZFDDm_W7T0Un65HGsajMQsnvj3Fa2JnPBNfYtgRTtN7opigeTNuBul5yGDlsYBo6MA&h=frKz4huM5BjT3-OWxTG3iFxzGXM80FX2x4TlKKuNHQk Cache-Control: - no-cache Content-Length: - - "1707" + - "1706" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:18 GMT + - Thu, 09 Apr 2026 17:29:15 GMT Expires: - "-1" Pragma: @@ -3238,23 +3506,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 + - 2661974aff233f61177418c4ae8d0d93 X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - ae672d46-2e7b-49ba-8454-3986db9a375e + - ef8cdd4f-f485-4789-a661-aa7c118cd7a8 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005318Z:ae672d46-2e7b-49ba-8454-3986db9a375e + - EASTUS:20260409T172915Z:ef8cdd4f-f485-4789-a661-aa7c118cd7a8 X-Msedge-Ref: - - 'Ref A: C3BE98539A96422BB8A17E9A81E5317B Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:15Z' + - 'Ref A: D0713E9D8BB348D989CCC84AD1654165 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:14Z' status: 200 OK code: 200 - duration: 3.385505084s - - id: 47 + duration: 1.113481292s + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3273,10 +3541,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315268892318391?api-version=2021-04-01&t=639056767988678403&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GtXgdiRZRHfw44qKhR8eh-HpUj-7FHphUStS5EZ2yACSnAsfLSscD4NwNYExS-4yiQPehD2AiPxHfqJ6ygAtcPpz4KcBsELYBFIEgP3iddAal-Q3nIN9KlRZ-ELfgzQwZD1qt1W8xoscOrtccprFpvglLN0NtvK2PFPB6YA2pXE0B3L1l9MsHswuYoVFXvtgywY7lmpoGUAF-4b-dZ3IaNyEVxOXZ_H4Mbls0Jo6tWxpdZ8bZrEsSifvo2nDBAy8CS2vKlNgnxf6Pd_R1D1wwDG2dB6c5cTprlbCS0_amm5QExta5D153HlBH-HZhaX1rXpaV0tm-rIZGbT1P2hZyQ&h=qR7X0MWR3Ghcmh5MPRG2zGlQWuy2r5UXL47fwJ_ok4Q + - 2661974aff233f61177418c4ae8d0d93 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258511302697360?api-version=2021-04-01&t=639113525559185513&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=O6Fn1Ja7J719rnN3E5PBn3HSHE1PJ0y16KDmL5bVVh6aWaACCYJSl8D_H_TQClZqi-XoQ3oGObR70MaG_cEnWiOsmIiy-mr1FCf963jKwKFbuG4Zm5A7Ax70pAyfQkDE2G5bV_FNgRl1MUgjMOq7bTzR1f6w2KdGJhRfjbcf_NgyDBlrv859yE5h6nUfl800t4yk6b0YiBTXy6UjapB1FKv5mPAOQgDpZXkjCMli_W71V9pLk-Sz8FIc156AECxT5LAJ64UDdHUMySE1eGEMZFDDm_W7T0Un65HGsajMQsnvj3Fa2JnPBNfYtgRTtN7opigeTNuBul5yGDlsYBo6MA&h=frKz4huM5BjT3-OWxTG3iFxzGXM80FX2x4TlKKuNHQk method: GET response: proto: HTTP/2.0 @@ -3295,7 +3563,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:49 GMT + - Thu, 09 Apr 2026 17:29:45 GMT Expires: - "-1" Pragma: @@ -3307,21 +3575,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 + - 2661974aff233f61177418c4ae8d0d93 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 519356c1-7c5e-42f6-b399-578aac89c34b + - 3584bf5a-a5a9-4a10-b976-0f6dab1364a6 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005349Z:519356c1-7c5e-42f6-b399-578aac89c34b + - EASTUS2:20260409T172946Z:3584bf5a-a5a9-4a10-b976-0f6dab1364a6 X-Msedge-Ref: - - 'Ref A: 5D3AB8EAB04F46BA96171DB8C1AC5AE2 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:49Z' + - 'Ref A: 7F8AB1CD4F4D462597831D42CFCD7B51 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:46Z' status: 200 OK code: 200 - duration: 384.958709ms - - id: 48 + duration: 87.740084ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3340,10 +3608,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 2661974aff233f61177418c4ae8d0d93 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3351,18 +3619,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:53:29.7269003Z","duration":"PT13.484149S","correlationId":"d8a6a649e9af41b5af4ea2fdf5d94864","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:29:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:29:20.9885603Z","duration":"PT5.7887567S","correlationId":"2661974aff233f61177418c4ae8d0d93","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:49 GMT + - Thu, 09 Apr 2026 17:29:45 GMT Expires: - "-1" Pragma: @@ -3374,21 +3642,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 + - 2661974aff233f61177418c4ae8d0d93 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4643e727-b390-48d2-ae08-e525fe10864b + - 45f11b72-a3d6-4ad2-9d6c-ae8d82ef5491 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005350Z:4643e727-b390-48d2-ae08-e525fe10864b + - EASTUS2:20260409T172946Z:45f11b72-a3d6-4ad2-9d6c-ae8d82ef5491 X-Msedge-Ref: - - 'Ref A: E327BCD9DCA04D259BBC5C01D8F1D5D3 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:49Z' + - 'Ref A: AAED2A3AE6A245ECB87337AE8D5B080F Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:46Z' status: 200 OK code: 200 - duration: 275.506083ms - - id: 49 + duration: 92.370209ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3409,10 +3677,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d808e60%27&api-version=2021-04-01 + - 2661974aff233f61177418c4ae8d0d93 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d8523ca%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3422,7 +3690,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","name":"rg-azdtest-d808e60","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","DeleteAfter":"2026-02-03T01:53:15Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","name":"rg-azdtest-d8523ca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","DeleteAfter":"2026-04-09T18:29:15Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3431,7 +3699,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:49 GMT + - Thu, 09 Apr 2026 17:29:45 GMT Expires: - "-1" Pragma: @@ -3443,21 +3711,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d8a6a649e9af41b5af4ea2fdf5d94864 + - 2661974aff233f61177418c4ae8d0d93 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 8e7fa4cd-1e6f-4c7a-b72e-bb4547f76cbf + - a3fa1bb2-1b3e-4ae6-9730-55b876781b29 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005350Z:8e7fa4cd-1e6f-4c7a-b72e-bb4547f76cbf + - EASTUS:20260409T172946Z:a3fa1bb2-1b3e-4ae6-9730-55b876781b29 X-Msedge-Ref: - - 'Ref A: 5C91064090F74BFBBD00983126A26B37 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:50Z' + - 'Ref A: 218659FC489648CD9565317B324A8C59 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:46Z' status: 200 OK code: 200 - duration: 126.060208ms - - id: 50 + duration: 171.158375ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3478,10 +3746,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3489,18 +3757,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 963717 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","location":"eastus2","name":"azdtest-d8523ca-1775755497","properties":{"correlationId":"2661974aff233f61177418c4ae8d0d93","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceName":"rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT5.7887567S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:29:15Z"},"environmentName":{"type":"String","value":"azdtest-d8523ca"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:29:20.9885603Z"},"tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "963717" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:57 GMT + - Thu, 09 Apr 2026 17:29:51 GMT Expires: - "-1" Pragma: @@ -3512,21 +3780,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e167d5cd-21bf-4a13-b822-c8820a1771ae + - a71b3da7-93d1-4439-badf-966df95506db X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005357Z:e167d5cd-21bf-4a13-b822-c8820a1771ae + - EASTUS:20260409T172951Z:a71b3da7-93d1-4439-badf-966df95506db X-Msedge-Ref: - - 'Ref A: B91BE003CD594F04966088AA7F7B00C8 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:52Z' + - 'Ref A: 8B14483C62A642DDAF93528D91B46F12 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:48Z' status: 200 OK code: 200 - duration: 4.9993045s - - id: 51 + duration: 3.586370541s + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3545,10 +3813,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3556,18 +3824,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 850286 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "850286" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:58 GMT + - Thu, 09 Apr 2026 17:29:54 GMT Expires: - "-1" Pragma: @@ -3579,21 +3847,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 970e2366-9c3a-485b-89ec-79b19b30ed1e + - 2ce1bf5d-2bfb-422f-ac4f-13cd986e1c3f X-Ms-Routing-Request-Id: - - WESTUS:20260203T005359Z:970e2366-9c3a-485b-89ec-79b19b30ed1e + - EASTUS:20260409T172955Z:2ce1bf5d-2bfb-422f-ac4f-13cd986e1c3f X-Msedge-Ref: - - 'Ref A: 330BE803103E44D0808CAF7C7645DC18 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:58Z' + - 'Ref A: 4DD228F657F04FF28F4749F3241A7633 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:51Z' status: 200 OK code: 200 - duration: 1.431230375s - - id: 52 + duration: 3.27451625s + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3612,10 +3880,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3623,18 +3891,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 253740 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","location":"eastus2","name":"azdtest-d808e60-1770079792","properties":{"correlationId":"d8a6a649e9af41b5af4ea2fdf5d94864","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceName":"rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT13.484149S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:15Z"},"environmentName":{"type":"String","value":"azdtest-d808e60"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-03T00:53:29.7269003Z"},"tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "253740" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:00 GMT + - Thu, 09 Apr 2026 17:29:57 GMT Expires: - "-1" Pragma: @@ -3646,21 +3914,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f42e450c-f681-474b-8da9-1f10cc2739b3 + - 31d2e568-334b-4597-b0b6-359e3f78fd15 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005401Z:f42e450c-f681-474b-8da9-1f10cc2739b3 + - EASTUS:20260409T172957Z:31d2e568-334b-4597-b0b6-359e3f78fd15 X-Msedge-Ref: - - 'Ref A: 6D9C2E59425449769723F4D717267F45 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:53:59Z' + - 'Ref A: 3FA61C52C02B4CD4A8884C2521B25C1D Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:55Z' status: 200 OK code: 200 - duration: 1.975225083s - - id: 53 + duration: 2.370329917s + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:29:57 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 1268364df95590239cd2afeba640e56d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - e8472014-1a98-4c3e-b492-d9d44f5ee7aa + X-Ms-Routing-Request-Id: + - EASTUS:20260409T172958Z:e8472014-1a98-4c3e-b492-d9d44f5ee7aa + X-Msedge-Ref: + - 'Ref A: 5D4CEE22AE4A404EB62D223A93525BA1 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:57Z' + status: 200 OK + code: 200 + duration: 843.351458ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3679,10 +4014,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3690,18 +4025,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:01 GMT + - Thu, 09 Apr 2026 17:29:58 GMT Expires: - "-1" Pragma: @@ -3713,21 +4048,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a8ab65d7-cdae-4021-ab69-16714780e506 + - 706b8ee5-250e-4237-b1fb-71bd9b293c86 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005402Z:a8ab65d7-cdae-4021-ab69-16714780e506 + - EASTUS:20260409T172959Z:706b8ee5-250e-4237-b1fb-71bd9b293c86 X-Msedge-Ref: - - 'Ref A: 1C30C1D8EFCF4C3581509DFBDA0A348B Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:54:01Z' + - 'Ref A: F7B6390B24EE445795F7977DCFE73851 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:58Z' status: 200 OK code: 200 - duration: 709.606583ms - - id: 54 + duration: 607.293541ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3748,10 +4083,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3759,18 +4094,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:53:29.7269003Z","duration":"PT13.484149S","correlationId":"d8a6a649e9af41b5af4ea2fdf5d94864","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:29:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:29:20.9885603Z","duration":"PT5.7887567S","correlationId":"2661974aff233f61177418c4ae8d0d93","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:02 GMT + - Thu, 09 Apr 2026 17:29:58 GMT Expires: - "-1" Pragma: @@ -3782,21 +4117,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e5844cbf-c8ed-4858-b556-b9ae98a73c3b + - 48e471ff-c05c-4bbc-9605-5892c7ef930d X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005402Z:e5844cbf-c8ed-4858-b556-b9ae98a73c3b + - EASTUS2:20260409T172959Z:48e471ff-c05c-4bbc-9605-5892c7ef930d X-Msedge-Ref: - - 'Ref A: D3FC7A21216640B88E72342D026BA491 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:54:02Z' + - 'Ref A: 66A97BA72D25439E985CBC5827FBEFE1 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:59Z' status: 200 OK code: 200 - duration: 412.144958ms - - id: 55 + duration: 100.668833ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3817,10 +4152,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/resources?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3830,7 +4165,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe","name":"sty6wm2xz3lebfe","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk","name":"stbcsg4z42wdpnk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca"}}]}' headers: Cache-Control: - no-cache @@ -3839,7 +4174,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:02 GMT + - Thu, 09 Apr 2026 17:29:58 GMT Expires: - "-1" Pragma: @@ -3851,21 +4186,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4ee0470e-ae94-4ffe-a6a9-d05dc3c2a865 + - 79d3af76-896f-4cf2-abb1-e3caa871d672 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005403Z:4ee0470e-ae94-4ffe-a6a9-d05dc3c2a865 + - EASTUS2:20260409T172959Z:79d3af76-896f-4cf2-abb1-e3caa871d672 X-Msedge-Ref: - - 'Ref A: 8760895185BE40BCB2FCB93C0083DD78 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:54:02Z' + - 'Ref A: E574031934F94E6E85FA27CA5A1572C3 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:59Z' status: 200 OK code: 200 - duration: 335.422917ms - - id: 56 + duration: 92.163ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3886,10 +4221,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3897,18 +4232,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:53:29.7269003Z","duration":"PT13.484149S","correlationId":"d8a6a649e9af41b5af4ea2fdf5d94864","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:29:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:29:20.9885603Z","duration":"PT5.7887567S","correlationId":"2661974aff233f61177418c4ae8d0d93","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:02 GMT + - Thu, 09 Apr 2026 17:29:59 GMT Expires: - "-1" Pragma: @@ -3920,21 +4255,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 904c4a41-544d-46b2-a947-1975a2f01de0 + - 3a6f6824-a406-4719-9b3c-b51a815ff619 X-Ms-Routing-Request-Id: - - EASTUS2:20260203T005403Z:904c4a41-544d-46b2-a947-1975a2f01de0 + - EASTUS:20260409T172959Z:3a6f6824-a406-4719-9b3c-b51a815ff619 X-Msedge-Ref: - - 'Ref A: C7665A880808454A8DE5B00878ACC16E Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:54:03Z' + - 'Ref A: F84AF2BE40474C26AD56D7BD9A0EBDA9 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:59Z' status: 200 OK code: 200 - duration: 239.220167ms - - id: 57 + duration: 125.578125ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3955,10 +4290,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/resources?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3968,7 +4303,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe","name":"sty6wm2xz3lebfe","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk","name":"stbcsg4z42wdpnk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca"}}]}' headers: Cache-Control: - no-cache @@ -3977,7 +4312,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:03 GMT + - Thu, 09 Apr 2026 17:29:59 GMT Expires: - "-1" Pragma: @@ -3989,21 +4324,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7b5f823d-c14e-4213-9f1f-58d0cbe7fbdc + - 6acff0ec-1181-4dfd-b6d9-448e586f6f5b X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005403Z:7b5f823d-c14e-4213-9f1f-58d0cbe7fbdc + - EASTUS2:20260409T172959Z:6acff0ec-1181-4dfd-b6d9-448e586f6f5b X-Msedge-Ref: - - 'Ref A: CBDDD70C5FA9455398ED41F18175FD74 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:54:03Z' + - 'Ref A: 0D48466356B14F0D809227FB49490CBF Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:59Z' status: 200 OK code: 200 - duration: 270.730083ms - - id: 58 + duration: 140.094958ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -4024,10 +4359,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d808e60?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d8523ca?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -4044,11 +4379,11 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:54:03 GMT + - Thu, 09 Apr 2026 17:29:59 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREODA4RTYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056768903859732&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=qBXagxctAPYQ9Qj2qZewEn2SkcaWrhemRn6TZec-mfgri1HRxL0cq9GmEA-D3qRbaSsk8BmRQH_AV457qzeEY7-qoBbtp0bJDn9BYRkaRvoLjnVLAVP2qHzKJWBEWt8FgA-nt9-2zPqfvV-SblGY6VoVx9tuwF-vqzCRcEPJQOEPDTe-QNpnv5z3PFWehTXR13gSxDCHBl1HYyirMmyW1Lg5PWeHdBdFsDHjrXjwFMvlCQ9VJuNv9dYkRrlLY9IFPNc1ti0tbIUySEPbUuf7-NxA0M_ACu5KBc52ojXxt-WXzMAG4M1V4LVq1JvGLUW-TnpxlRC0H6AIZ7orrXkRIw&h=u-Beyzr75xaR9K4F7yBnMS1h5YrHXje8HCj7jwlWsWA + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREODUyM0NBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113527061730242&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=fybDNotdHOAguRk9fSEGYOJOq0Wap9GEIOSYhghHtSJlZ3qo0-GN78Y3MYLmz2cPSUdTRktvJwUDJBjJt9gU6FkUq7h77lYn3zEKD9lgCf-6Pf19dWxyn29MGoTeSFSOwP4mZquttM8JVNf95SbVBrXiWaHMNnK8A9x1VcqQb4DKB5EIXiYEYGjtIdP8Pnx_teTzo1TSSCAW4BkGnbZR-XIHnFP9SUgspWsS86V-89VeYWeSNgQ3IwEfkZxsCjSQARZ72biBLpP6Hd_5bfuLWSyJLyfxxKdPEjDnZXHoWz6cyK1zKos71O7CK2EOuL_KhVudCRVKiafsbEHhwcsF1g&h=Ou9GssIebIVanUdniTo31CanVKSADRxLAMtDtFLPINM Pragma: - no-cache Retry-After: @@ -4060,21 +4395,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - 698f7e4a-8e63-452c-b71f-76d4d21ad71b + - d2edcfa2-f0b2-4327-9fa3-139f3fefd887 X-Ms-Routing-Request-Id: - - EASTUS2:20260203T005404Z:698f7e4a-8e63-452c-b71f-76d4d21ad71b + - EASTUS2:20260409T173000Z:d2edcfa2-f0b2-4327-9fa3-139f3fefd887 X-Msedge-Ref: - - 'Ref A: A8A0555531F9467B9854C46FF6D7F9FF Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:54:03Z' + - 'Ref A: B5ADD32902B043A8B7BFC4004549FDE9 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:29:59Z' status: 202 Accepted code: 202 - duration: 242.670833ms - - id: 59 + duration: 252.926584ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -4093,10 +4428,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREODA4RTYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056768903859732&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=qBXagxctAPYQ9Qj2qZewEn2SkcaWrhemRn6TZec-mfgri1HRxL0cq9GmEA-D3qRbaSsk8BmRQH_AV457qzeEY7-qoBbtp0bJDn9BYRkaRvoLjnVLAVP2qHzKJWBEWt8FgA-nt9-2zPqfvV-SblGY6VoVx9tuwF-vqzCRcEPJQOEPDTe-QNpnv5z3PFWehTXR13gSxDCHBl1HYyirMmyW1Lg5PWeHdBdFsDHjrXjwFMvlCQ9VJuNv9dYkRrlLY9IFPNc1ti0tbIUySEPbUuf7-NxA0M_ACu5KBc52ojXxt-WXzMAG4M1V4LVq1JvGLUW-TnpxlRC0H6AIZ7orrXkRIw&h=u-Beyzr75xaR9K4F7yBnMS1h5YrHXje8HCj7jwlWsWA + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREODUyM0NBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113527061730242&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=fybDNotdHOAguRk9fSEGYOJOq0Wap9GEIOSYhghHtSJlZ3qo0-GN78Y3MYLmz2cPSUdTRktvJwUDJBjJt9gU6FkUq7h77lYn3zEKD9lgCf-6Pf19dWxyn29MGoTeSFSOwP4mZquttM8JVNf95SbVBrXiWaHMNnK8A9x1VcqQb4DKB5EIXiYEYGjtIdP8Pnx_teTzo1TSSCAW4BkGnbZR-XIHnFP9SUgspWsS86V-89VeYWeSNgQ3IwEfkZxsCjSQARZ72biBLpP6Hd_5bfuLWSyJLyfxxKdPEjDnZXHoWz6cyK1zKos71O7CK2EOuL_KhVudCRVKiafsbEHhwcsF1g&h=Ou9GssIebIVanUdniTo31CanVKSADRxLAMtDtFLPINM method: GET response: proto: HTTP/2.0 @@ -4113,7 +4448,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:55:05 GMT + - Thu, 09 Apr 2026 17:32:00 GMT Expires: - "-1" Pragma: @@ -4125,21 +4460,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 962179ac-d7a7-471b-8e91-3d9dc29367b2 + - d279d7d2-f41f-4d47-9d18-3a84477d7b2c X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005505Z:962179ac-d7a7-471b-8e91-3d9dc29367b2 + - EASTUS:20260409T173201Z:d279d7d2-f41f-4d47-9d18-3a84477d7b2c X-Msedge-Ref: - - 'Ref A: 7C59B1965E6046209E9F534A32CA03ED Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:55:05Z' + - 'Ref A: F6BF792614CC494885C7C6B2E5848FCD Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:32:01Z' status: 200 OK code: 200 - duration: 481.138083ms - - id: 60 + duration: 137.475459ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -4160,10 +4495,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4171,18 +4506,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d808e60","azd-layer-name":"","azd-provision-param-hash":"c201b8b9ad09ababff3f840d843aaffc2b9fcc0042970942d80808f119c4cc98"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-d808e60"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:53:29.7269003Z","duration":"PT13.484149S","correlationId":"d8a6a649e9af41b5af4ea2fdf5d94864","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d808e60"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty6wm2xz3lebfe"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d808e60/providers/Microsoft.Storage/storageAccounts/sty6wm2xz3lebfe"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d8523ca","azd-layer-name":"","azd-provision-param-hash":"b676ab94e9976509b3bfc3567d6e6a0554438a67f84a1768d943a85d2a5224b0"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d8523ca"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:29:15Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:29:20.9885603Z","duration":"PT5.7887567S","correlationId":"2661974aff233f61177418c4ae8d0d93","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d8523ca"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbcsg4z42wdpnk"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d8523ca/providers/Microsoft.Storage/storageAccounts/stbcsg4z42wdpnk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:55:05 GMT + - Thu, 09 Apr 2026 17:32:00 GMT Expires: - "-1" Pragma: @@ -4194,21 +4529,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 12dc696f-4ca2-4d2f-b8a1-ce4abedf2985 + - b6a94666-395b-4ecc-bb39-15783c426e2e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005506Z:12dc696f-4ca2-4d2f-b8a1-ce4abedf2985 + - EASTUS2:20260409T173201Z:b6a94666-395b-4ecc-bb39-15783c426e2e X-Msedge-Ref: - - 'Ref A: 4B532D6C18BE4ACC9A4F906A3572AB57 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:55:05Z' + - 'Ref A: 1C8812F7062E4159AF6EF912585413A1 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:32:01Z' status: 200 OK code: 200 - duration: 427.987708ms - - id: 61 + duration: 96.431834ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -4219,7 +4554,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d808e60"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d8523ca"}}' form: {} headers: Accept: @@ -4233,10 +4568,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -4246,10 +4581,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d808e60"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:55:07.0273198Z","duration":"PT0.0008992S","correlationId":"2a3c8a7152b5dcfdbdea4be9b3d9863f","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d8523ca"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:32:01.9737006Z","duration":"PT0.0001853S","correlationId":"1268364df95590239cd2afeba640e56d","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315267784481190?api-version=2021-04-01&t=639056769092929559&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=MOYjBb80C_idWbbT4DsTIjgRw8Ra-OCSpWiOcSqLOmf9eCKIWf93_O1XpWYUdUEdyG2mx_IB3DoKlGn33gQUlgoG9glO_0WpslzIvfoaiy8SKQt7PnhyU3MCBMsDGWcAgN78mleRlaSIhV0JP1MYDcCEh-27kzjrBNep_TJtbpFhfC4gXq7bYqwJj8PkX-FmsKti35cKJn4lzHGNQxSmtIEx_pDda6WOod33jXSRna1PkEhSHz03bMdki1kpX0HoYQsWkpU9A2rjYpSiPTmRwdMO9PirUGxC3s0quk8-Jwvy2gR0QpH0HfcrXW3rG_E4RsmTd1owDOlID4sRiTG9pQ&h=j_wygu5HbSxoP3AKsAXImjVQo3l6FkVSREwkVvKbv44 + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258509634933915?api-version=2021-04-01&t=639113527225049624&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=KQFbI08dmuTaT7FcWrzPg5k1cmt1IYWp8rwWu9l3fVn2yeFHKCSeBeVzxGy4bySc3VpmqeodRsKPzeoYVivnW-wdlL1iPZEJxjIiGYqh61eNQs-u_IjLDqE8luL0izwzh6G26-vAKWMB1PwOhR0FJAV5IARdUZOhK9w8hbOOC4pmHeiHgwpIYOT4uSUOYKcD5BfycvCec8490s4I0ZXs5Yt3wjclY_DD7-IWtDlXtEEVnzGZvyddlhRZ6FOXbJR1mRxaR4FV5_e66re47ZZfjsq1ABgnRcX3k1wbCPEcKclF-5nYWkcpmsRI3_PYkxTC2xkJcJ9rM1Uh2H6dzezIaA&h=j2Kjk78W1Quu_aVEQBP4iVGS1XHetnnKusDj5KM-B_k Cache-Control: - no-cache Content-Length: @@ -4257,7 +4592,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:55:08 GMT + - Thu, 09 Apr 2026 17:32:01 GMT Expires: - "-1" Pragma: @@ -4269,23 +4604,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - e170894c-c22e-41b9-b7c4-cd53acbf3e4d + - 08452e07-d8a6-44ed-aadb-71c64f5f6c3c X-Ms-Routing-Request-Id: - - WESTUS:20260203T005509Z:e170894c-c22e-41b9-b7c4-cd53acbf3e4d + - EASTUS:20260409T173202Z:08452e07-d8a6-44ed-aadb-71c64f5f6c3c X-Msedge-Ref: - - 'Ref A: 4111A1D8C4494DA3886B19BFAD268B9B Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:55:06Z' + - 'Ref A: A9E8ACF16C3D469EB5E8B3C868FD5FE0 Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:32:01Z' status: 200 OK code: 200 - duration: 3.026250083s - - id: 62 + duration: 911.712125ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -4304,10 +4639,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792/operationStatuses/08584315267784481190?api-version=2021-04-01&t=639056769092929559&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=MOYjBb80C_idWbbT4DsTIjgRw8Ra-OCSpWiOcSqLOmf9eCKIWf93_O1XpWYUdUEdyG2mx_IB3DoKlGn33gQUlgoG9glO_0WpslzIvfoaiy8SKQt7PnhyU3MCBMsDGWcAgN78mleRlaSIhV0JP1MYDcCEh-27kzjrBNep_TJtbpFhfC4gXq7bYqwJj8PkX-FmsKti35cKJn4lzHGNQxSmtIEx_pDda6WOod33jXSRna1PkEhSHz03bMdki1kpX0HoYQsWkpU9A2rjYpSiPTmRwdMO9PirUGxC3s0quk8-Jwvy2gR0QpH0HfcrXW3rG_E4RsmTd1owDOlID4sRiTG9pQ&h=j_wygu5HbSxoP3AKsAXImjVQo3l6FkVSREwkVvKbv44 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497/operationStatuses/08584258509634933915?api-version=2021-04-01&t=639113527225049624&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=KQFbI08dmuTaT7FcWrzPg5k1cmt1IYWp8rwWu9l3fVn2yeFHKCSeBeVzxGy4bySc3VpmqeodRsKPzeoYVivnW-wdlL1iPZEJxjIiGYqh61eNQs-u_IjLDqE8luL0izwzh6G26-vAKWMB1PwOhR0FJAV5IARdUZOhK9w8hbOOC4pmHeiHgwpIYOT4uSUOYKcD5BfycvCec8490s4I0ZXs5Yt3wjclY_DD7-IWtDlXtEEVnzGZvyddlhRZ6FOXbJR1mRxaR4FV5_e66re47ZZfjsq1ABgnRcX3k1wbCPEcKclF-5nYWkcpmsRI3_PYkxTC2xkJcJ9rM1Uh2H6dzezIaA&h=j2Kjk78W1Quu_aVEQBP4iVGS1XHetnnKusDj5KM-B_k method: GET response: proto: HTTP/2.0 @@ -4326,7 +4661,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:55:09 GMT + - Thu, 09 Apr 2026 17:32:32 GMT Expires: - "-1" Pragma: @@ -4338,21 +4673,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d4e52b18-2f91-4696-84a7-0acf72dfb852 + - 1cba86d2-0216-4db9-8f24-4348753a14ac X-Ms-Routing-Request-Id: - - WESTUS:20260203T005509Z:d4e52b18-2f91-4696-84a7-0acf72dfb852 + - EASTUS2:20260409T173232Z:1cba86d2-0216-4db9-8f24-4348753a14ac X-Msedge-Ref: - - 'Ref A: 5906A42C40464D5EA6F0C65A50BE6FE1 Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:55:09Z' + - 'Ref A: 8C9EE0F7CB324567BFEEF05C899B7FCA Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:32:32Z' status: 200 OK code: 200 - duration: 249.632084ms - - id: 63 + duration: 136.006792ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -4371,10 +4706,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792?api-version=2021-04-01 + - 1268364df95590239cd2afeba640e56d + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4382,18 +4717,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 604 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d808e60-1770079792","name":"azdtest-d808e60-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d808e60"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:55:09.5245444Z","duration":"PT2.4972246S","correlationId":"2a3c8a7152b5dcfdbdea4be9b3d9863f","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d8523ca-1775755497","name":"azdtest-d8523ca-1775755497","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d8523ca"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:32:03.095886Z","duration":"PT1.1221854S","correlationId":"1268364df95590239cd2afeba640e56d","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "605" + - "604" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:55:09 GMT + - Thu, 09 Apr 2026 17:32:32 GMT Expires: - "-1" Pragma: @@ -4405,78 +4740,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a3c8a7152b5dcfdbdea4be9b3d9863f + - 1268364df95590239cd2afeba640e56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - db623e98-3c16-4d5f-8174-60f0cc71f26b + - 780d2f13-5b46-415e-abd8-7af94a47788d X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005510Z:db623e98-3c16-4d5f-8174-60f0cc71f26b + - EASTUS:20260409T173232Z:780d2f13-5b46-415e-abd8-7af94a47788d X-Msedge-Ref: - - 'Ref A: B67534227090498AAB2B0C519762D17D Ref B: CO6AA3150219031 Ref C: 2026-02-03T00:55:09Z' + - 'Ref A: 61A960BB5B2847458C10CB100B949C8B Ref B: BN1AA2051015011 Ref C: 2026-04-09T17:32:32Z' status: 200 OK code: 200 - duration: 422.415625ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: aka.ms - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) - url: https://aka.ms:443/azd/extensions/registry/dev - 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: - - Tue, 03 Feb 2026 00:55:10 GMT - Expires: - - Tue, 03 Feb 2026 00:55:10 GMT - Location: - - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 318.098209ms - - id: 65 + duration: 150.501125ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -4494,11 +4772,9 @@ interactions: - gzip Authorization: - SANITIZED - Referer: - - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) - url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -4506,899 +4782,9146 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 41722 + content_length: 138770 uncompressed: false body: |- { "extensions": [ { - "id": "microsoft.azd.demo", - "namespace": "demo", - "displayName": "Demo Extension", - "description": "This extension provides examples of the AZD extension framework.", + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", "versions": [ { + "version": "0.1.2", "capabilities": [ - "custom-commands", - "lifecycle-events" + "custom-commands" ], - "version": "0.1.0-beta.1", - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" }, "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" + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.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" + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" }, - "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" + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" } - } + }, + "entryPoint": "app" }, { + "version": "0.3.1", "capabilities": [ "custom-commands", - "lifecycle-events" + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" }, - "entryPoint": "microsoft-azd-demo-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" }, - "entryPoint": "microsoft-azd-demo-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" }, - "entryPoint": "microsoft-azd-demo-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" }, - "entryPoint": "microsoft-azd-demo-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" }, - "entryPoint": "microsoft-azd-demo-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" }, - "entryPoint": "microsoft-azd-demo-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" } } - } - ] - }, - { - "id": "microsoft.azd.ai.builder", - "namespace": "ai", - "displayName": "AZD AI Builder", - "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", - "versions": [ + }, { + "version": "0.3.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.1.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.3.3", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-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.3.7", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.4.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.3.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.4.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "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" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.1", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.4.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:32:33 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:37:33 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - d551327acd3067075734b496b2aa4ff5e3472aef + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760050-MIA + X-Timer: + - S1775755953.200918,VS0,VE63 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 154.563292ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:32:33 GMT + Expires: + - Thu, 09 Apr 2026 17:32:33 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: 525.719584ms + - id: 71 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:32:33 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:37:33 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 3a28e36fcd81ee9014ecad18183daed01bc2e605 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760050-MIA + X-Timer: + - S1775755954.832130,VS0,VE37 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 52.181083ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:32:34 GMT + Expires: + - Thu, 09 Apr 2026 17:32:34 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 164.594208ms + - id: 73 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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": "publish", + "description": "Publish the AZD extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:32:34 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:37:34 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 3e003095418e935225ec359d552766a1940da86e + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760050-MIA + X-Timer: + - S1775755954.096093,VS0,VE115 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 133.860167ms + - id: 74 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.1.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.4.2", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.0.5", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.5.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "publish", - "description": "Publish the AZD extension project to an extension source.", - "usage": "azd x publish" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.0.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.5.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AZD extension project.", - "usage": "azd x init" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "build", - "description": "Build the AZD extension project.", - "usage": "azd x build" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" }, - { - "name": "publish", - "description": "Publish the AZD extension project to an extension source.", - "usage": "azd x publish" + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" } } } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" ] } ] @@ -5411,7 +13934,7 @@ interactions: Cache-Control: - max-age=300 Content-Length: - - "41722" + - "16828" Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: @@ -5419,11 +13942,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Tue, 03 Feb 2026 00:55:11 GMT + - Thu, 09 Apr 2026 17:32:34 GMT Etag: - - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - Tue, 03 Feb 2026 01:00:11 GMT + - Thu, 09 Apr 2026 17:37:34 GMT Source-Age: - "0" Strict-Transport-Security: @@ -5433,27 +13956,27 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - "0" X-Content-Type-Options: - nosniff X-Fastly-Request-Id: - - 4201e8f224bf83d3df7fdf1916f92b2c97d300b7 + - 007e7b7b0683e76e419773169bcace1a34bb39a8 X-Frame-Options: - deny X-Github-Request-Id: - - EC20:31946:205652:28E7AC:6981476E + - E072:2F6A22:7FEE2:965AC:69D7C890 X-Served-By: - - cache-bfi-krnt7300042-BFI + - cache-mia-kmia1760050-MIA X-Timer: - - S1770080111.974096,VS0,VE107 + - S1775755954.239440,VS0,VE83 X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 - duration: 361.646084ms + duration: 98.723792ms --- -env_name: azdtest-d808e60 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1770079792" +env_name: azdtest-d8523ca +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775755497" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml index 47aa9963535..d31a0d19e63 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:10 GMT + - Thu, 09 Apr 2026 17:33:14 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9ea148aa-dd31-4174-90ad-c4b748f7ce48 + - 9205ee04-7018-4c90-bd11-1cf05cbc1309 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005010Z:9ea148aa-dd31-4174-90ad-c4b748f7ce48 + - EASTUS2:20260409T173314Z:9205ee04-7018-4c90-bd11-1cf05cbc1309 X-Msedge-Ref: - - 'Ref A: 03EB79A1A3DF4D67A5C75DEA0EC986AA Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:08Z' + - 'Ref A: 5C2748AD6FF14BA7A9AC05A3DBB699FC Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:13Z' status: 200 OK code: 200 - duration: 2.846859791s + duration: 1.102915833s - id: 1 request: proto: HTTP/1.1 @@ -91,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -102,18 +102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 960970 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "960970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:17 GMT + - Thu, 09 Apr 2026 17:33:18 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d7dd7403-893c-4a40-a8b2-a8cf27a3696b + - 202d90fc-6b4d-4965-b40e-73cb4239a189 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005018Z:d7dd7403-893c-4a40-a8b2-a8cf27a3696b + - EASTUS:20260409T173318Z:202d90fc-6b4d-4965-b40e-73cb4239a189 X-Msedge-Ref: - - 'Ref A: A7318D99C043432FA19819A7D700B96D Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:10Z' + - 'Ref A: A08FB0CF206E4F01AD2C9EF41C00F28D Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:15Z' status: 200 OK code: 200 - duration: 7.191199542s + duration: 3.628771875s - id: 2 request: proto: HTTP/1.1 @@ -158,10 +158,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%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: 280198 + content_length: 852897 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "852897" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:19 GMT + - Thu, 09 Apr 2026 17:33:21 GMT Expires: - "-1" Pragma: @@ -192,20 +192,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4bb963f9-7eb2-443a-9e81-d048ee4e12fc + - 0b8a2384-f6aa-4d06-bca3-1e4f7f70cac3 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260203T005020Z:4bb963f9-7eb2-443a-9e81-d048ee4e12fc + - EASTUS2:20260409T173321Z:0b8a2384-f6aa-4d06-bca3-1e4f7f70cac3 X-Msedge-Ref: - - 'Ref A: 830BD1CD0CB44564B5C6E8FE479F5A3E Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:18Z' + - 'Ref A: C44DED92545D4FF08AE93A26C80D0947 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:19Z' status: 200 OK code: 200 - duration: 1.556238792s + duration: 2.583698209s - id: 3 request: proto: HTTP/1.1 @@ -225,10 +225,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -236,18 +236,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 249291 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY%2fLboMwEEW%2fBa%2bJZJNWqtgBJi1tZlwbmyrdRZQiCAKpJeIR8e8lTVhE2c2Ze2akeyJpU7dFfdy3RVPr5pDVv8Q9kdCLtYmd81hnffu%2b%2f2mLs%2fGWDcQlzHqyUO96GHcrYv8bqumWjK0dSx02PvC8k%2baTg5EPyH1f8YpLmmzAhBS1z6VOAtRf34qh2Ma0E9zMHoww5gzLnIrZhjKiGDCpaf8qWRWqxAfNKlTm0YgyeQYdDYJHDDg4yL0Bx3S%2bNwOU6YpMNglC1Mrbmpi49bGq7GuxhT7Ca81LeMHbcL0gCqVf7v7Fwtxtp%2bkP\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "249291" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:22 GMT + - Thu, 09 Apr 2026 17:33:22 GMT Expires: - "-1" Pragma: @@ -259,20 +259,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cb70a344-07d0-4db6-9f0c-53bb6d766819 + - 3bbfe950-44a4-4577-8cdf-b3b746b19500 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005022Z:cb70a344-07d0-4db6-9f0c-53bb6d766819 + - EASTUS2:20260409T173323Z:3bbfe950-44a4-4577-8cdf-b3b746b19500 X-Msedge-Ref: - - 'Ref A: 091CA25127614B7698AA2FF5D1883241 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:20Z' + - 'Ref A: 388CC1BDC09E42E89B05BBE0E8F12426 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:21Z' status: 200 OK code: 200 - duration: 2.718522959s + duration: 1.335015833s - id: 4 request: proto: HTTP/1.1 @@ -292,10 +292,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY%2FLboMwEEW%2FBa%2BJZJNWqtgBJi1tZlwbmyrdRZQiCAKpJeIR8e8lTVhE2c2Ze2akeyJpU7dFfdy3RVPr5pDVv8Q9kdCLtYmd81hnffu%2B%2F2mLs%2FGWDcQlzHqyUO96GHcrYv8bqumWjK0dSx02PvC8k%2BaTg5EPyH1f8YpLmmzAhBS1z6VOAtRf34qh2Ma0E9zMHoww5gzLnIrZhjKiGDCpaf8qWRWqxAfNKlTm0YgyeQYdDYJHDDg4yL0Bx3S%2BNwOU6YpMNglC1Mrbmpi49bGq7GuxhT7Ca81LeMHbcL0gCqVf7v7Fwtxtp%2BkP&api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -303,18 +303,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:23 GMT + - Thu, 09 Apr 2026 17:33:24 GMT Expires: - "-1" Pragma: @@ -326,32 +326,99 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d249b4c8-1609-40b4-870b-75f74b4f3676 + - 31f35a29-088a-4b34-95ee-3c6dff57b870 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260203T005023Z:d249b4c8-1609-40b4-870b-75f74b4f3676 + - EASTUS2:20260409T173325Z:31f35a29-088a-4b34-95ee-3c6dff57b870 X-Msedge-Ref: - - 'Ref A: DEAFDA4921D14057A61BB4305CBAF821 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:23Z' + - 'Ref A: 3597F8B3A13845E2982AD6855814EDE9 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:23Z' status: 200 OK code: 200 - duration: 564.324167ms + duration: 2.129254875s - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5036 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:33:25 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cb0b7914b98a4a7b9ef35b04586ed120 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 49b4a315-cb9f-4951-9be6-6d8b04b975aa + X-Ms-Routing-Request-Id: + - EASTUS:20260409T173325Z:49b4a315-cb9f-4951-9be6-6d8b04b975aa + X-Msedge-Ref: + - 'Ref A: 7DA0547498234609B74EDB2725E8F2C5 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:25Z' + status: 200 OK + code: 200 + duration: 460.555834ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5035 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-dce66f2","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d7f3516","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"}}' form: {} headers: Accept: @@ -361,14 +428,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5036" + - "5035" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/validate?api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/validate?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -376,18 +443,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2119 + content_length: 2118 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:24Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:50:24.7316736Z","duration":"PT0S","correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:27Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:33:27.4798661Z","duration":"PT0S","correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2119" + - "2118" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:25 GMT + - Thu, 09 Apr 2026 17:33:28 GMT Expires: - "-1" Pragma: @@ -399,32 +466,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 5a3b9f16-9cab-4952-b261-a462841f286f + - 159f8f13-a1fc-4fdc-b77c-5bf28d01692e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005026Z:5a3b9f16-9cab-4952-b261-a462841f286f + - EASTUS:20260409T173328Z:159f8f13-a1fc-4fdc-b77c-5bf28d01692e X-Msedge-Ref: - - 'Ref A: F0165524F8FE4495958C3CD999578CFF Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:23Z' + - 'Ref A: AF9CD3C59A6244F7AE4E59E195F219DB Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:27Z' status: 200 OK code: 200 - duration: 2.492379625s - - id: 6 + duration: 1.20452875s + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5036 + content_length: 5035 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-dce66f2","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d7f3516","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"}}' form: {} headers: Accept: @@ -434,14 +501,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5036" + - "5035" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -449,20 +516,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1706 + content_length: 1705 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:50:26.4970777Z","duration":"PT0.0007216S","correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:28Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:33:28.7687649Z","duration":"PT0.0000927S","correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315270589678624?api-version=2021-04-01&t=639056766290439396&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=hGQD6C0fQHiSvVoJhjOMhtrBK3B_d_1HNCiy1urpvpsHHOFfGU-x8RYioxa-L5190crv1upjMBItgdB3vQ5pNeItNibrbeDzogU7IcAzPq7Fa5mc7nXP9HyVUd8gfSvX7sXbASKnWH3GBNK9uQfyLu1a-aET76JpnAlckoOhxJ1sM129jIMgIrTjoSCioG-l5xyu3RritFP7BGaswQKrAe_lXg2IIJncJta86FeSBmweGwcQIPcyjaoJUzhlRkJmaZakvTNWMBLPYvi6AYikS_Q6pJVuCh8HuuZA0rzrONIb51os4UM4z9JtPNGI5mCTCF0TOAKu2DTtrDeeqI-UyQ&h=oJ8NVG8hDJrkaPsRT2hGRdAxH_PBI4RLySF0NSvrZxM + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258508767068274?api-version=2021-04-01&t=639113528094719890&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=mrk0VBQ9u_a4jmKFLLGKmxeTUVH54I88xnjx7L_ONX6eqFBTRkRyu9HbIIFu2HBLkSopU16POKelnpchu-4bddS2T-_t7JdQL0CJ1Fe1lbtLLRZOQbM5A_cBPivSY8NduiWBJLGT1fnb-KP4nOstM7aImKkzcPvgmMSGla96TXFUuyqIoRjahs3SAO--vRWP5Uhw7k6nSiAbN0LJ-oJr9K-ZGkT23soSNwBye1Au7h7tNs4odZI6gP-lqokcCmjgYypi8cMu9RBsv5f9lpJro_UMwP0LkNh8hRQc4gVxlyPdmgvZZne_WyVC9mRT_xuQI0DWvt9afO9vf4jWxh0R6w&h=w4pAwRfTyZOh-kUibY5atTc7XipS7vKVvTCqQtK_6NM Cache-Control: - no-cache Content-Length: - - "1706" + - "1705" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:28 GMT + - Thu, 09 Apr 2026 17:33:29 GMT Expires: - "-1" Pragma: @@ -474,23 +541,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - b9a081c4-a925-4a58-b782-06a63d14737c + - b446b860-3142-4bab-b448-9c7b4e8aa2ef X-Ms-Routing-Request-Id: - - WESTUS:20260203T005029Z:b9a081c4-a925-4a58-b782-06a63d14737c + - EASTUS:20260409T173329Z:b446b860-3142-4bab-b448-9c7b4e8aa2ef X-Msedge-Ref: - - 'Ref A: 0B11C0B7D88D46EA99F9889ED89819FB Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:26Z' + - 'Ref A: 27C73072A27C4BF38CD17AFA92E17A7E Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:28Z' status: 201 Created code: 201 - duration: 2.954187167s - - id: 7 + duration: 1.083363167s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -509,10 +576,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315270589678624?api-version=2021-04-01&t=639056766290439396&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=hGQD6C0fQHiSvVoJhjOMhtrBK3B_d_1HNCiy1urpvpsHHOFfGU-x8RYioxa-L5190crv1upjMBItgdB3vQ5pNeItNibrbeDzogU7IcAzPq7Fa5mc7nXP9HyVUd8gfSvX7sXbASKnWH3GBNK9uQfyLu1a-aET76JpnAlckoOhxJ1sM129jIMgIrTjoSCioG-l5xyu3RritFP7BGaswQKrAe_lXg2IIJncJta86FeSBmweGwcQIPcyjaoJUzhlRkJmaZakvTNWMBLPYvi6AYikS_Q6pJVuCh8HuuZA0rzrONIb51os4UM4z9JtPNGI5mCTCF0TOAKu2DTtrDeeqI-UyQ&h=oJ8NVG8hDJrkaPsRT2hGRdAxH_PBI4RLySF0NSvrZxM + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258508767068274?api-version=2021-04-01&t=639113528094719890&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=mrk0VBQ9u_a4jmKFLLGKmxeTUVH54I88xnjx7L_ONX6eqFBTRkRyu9HbIIFu2HBLkSopU16POKelnpchu-4bddS2T-_t7JdQL0CJ1Fe1lbtLLRZOQbM5A_cBPivSY8NduiWBJLGT1fnb-KP4nOstM7aImKkzcPvgmMSGla96TXFUuyqIoRjahs3SAO--vRWP5Uhw7k6nSiAbN0LJ-oJr9K-ZGkT23soSNwBye1Au7h7tNs4odZI6gP-lqokcCmjgYypi8cMu9RBsv5f9lpJro_UMwP0LkNh8hRQc4gVxlyPdmgvZZne_WyVC9mRT_xuQI0DWvt9afO9vf4jWxh0R6w&h=w4pAwRfTyZOh-kUibY5atTc7XipS7vKVvTCqQtK_6NM method: GET response: proto: HTTP/2.0 @@ -531,7 +598,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:59 GMT + - Thu, 09 Apr 2026 17:33:59 GMT Expires: - "-1" Pragma: @@ -543,21 +610,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a53d01a5-45ff-4df1-bf97-46f8c01f3cda + - fb97d988-9507-4e47-aa30-fd0e5dfd6a69 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005059Z:a53d01a5-45ff-4df1-bf97-46f8c01f3cda + - EASTUS:20260409T173359Z:fb97d988-9507-4e47-aa30-fd0e5dfd6a69 X-Msedge-Ref: - - 'Ref A: 5DE578F85D4D4B0890D92687B500F25B Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:50:59Z' + - 'Ref A: CB610239EB224F18A334B225B32F13EF Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:59Z' status: 200 OK code: 200 - duration: 485.354ms - - id: 8 + duration: 128.411583ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -576,10 +643,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -587,18 +654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:50:56.7923346Z","duration":"PT30.2952569S","correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:28Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:33:55.2995246Z","duration":"PT26.5307597S","correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:59 GMT + - Thu, 09 Apr 2026 17:33:59 GMT Expires: - "-1" Pragma: @@ -610,21 +677,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fe744546-6dcd-4ac3-a1aa-01288432c732 + - cd313bdb-6d05-49de-a4ba-265b65b4bbde X-Ms-Routing-Request-Id: - - WESTUS:20260203T005100Z:fe744546-6dcd-4ac3-a1aa-01288432c732 + - EASTUS:20260409T173359Z:cd313bdb-6d05-49de-a4ba-265b65b4bbde X-Msedge-Ref: - - 'Ref A: 6F7E5EC7068E496D8F8F866FC03EE8F8 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:00Z' + - 'Ref A: 33503E5EBC514F48A50C1610E7EA1351 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:33:59Z' status: 200 OK code: 200 - duration: 256.564208ms - - id: 9 + duration: 133.671875ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -645,10 +712,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-dce66f2%27&api-version=2021-04-01 + - cb0b7914b98a4a7b9ef35b04586ed120 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d7f3516%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -658,7 +725,7 @@ interactions: trailer: {} content_length: 429 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","name":"rg-azdtest-dce66f2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","DeleteAfter":"2026-02-03T01:50:26Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","name":"rg-azdtest-d7f3516","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","DeleteAfter":"2026-04-09T18:33:28Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -667,7 +734,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:50:59 GMT + - Thu, 09 Apr 2026 17:33:59 GMT Expires: - "-1" Pragma: @@ -679,21 +746,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e7ac4fe6db7263c22f6e17cd0ab40068 + - cb0b7914b98a4a7b9ef35b04586ed120 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d73597a1-11e9-4900-b4f6-350aca640556 + - 6d061e2d-b6c1-4eff-8bae-1a72da4d7c7f X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005100Z:d73597a1-11e9-4900-b4f6-350aca640556 + - EASTUS:20260409T173400Z:6d061e2d-b6c1-4eff-8bae-1a72da4d7c7f X-Msedge-Ref: - - 'Ref A: 60D21D8EBAA84F11AD00A2D83A60F336 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:00Z' + - 'Ref A: 6BD497E69FB94EE7AC20F4B029929E18 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:00Z' status: 200 OK code: 200 - duration: 168.354ms - - id: 10 + duration: 207.102416ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -714,10 +781,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 6d4979f14a8e2e1a775d11df76d9634f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -725,18 +792,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:04 GMT + - Thu, 09 Apr 2026 17:34:02 GMT Expires: - "-1" Pragma: @@ -748,21 +815,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e3698d01-536a-4602-8c2c-1d81172141c5 + - 4dc1b434-cb91-4adc-ac04-27c5ef6e205e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005104Z:e3698d01-536a-4602-8c2c-1d81172141c5 + - EASTUS:20260409T173403Z:4dc1b434-cb91-4adc-ac04-27c5ef6e205e X-Msedge-Ref: - - 'Ref A: 8E33D4C0787E4BA68B12D053B5750757 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:03Z' + - 'Ref A: 546C126D070B42B8A980DF2235AD1960 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:02Z' status: 200 OK code: 200 - duration: 1.833405666s - - id: 11 + duration: 857.031917ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -783,10 +850,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 6d4979f14a8e2e1a775d11df76d9634f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -794,18 +861,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 963717 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","location":"eastus2","name":"azdtest-d7f3516-1775755989","properties":{"correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceName":"rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT26.5307597S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:28Z"},"environmentName":{"type":"String","value":"azdtest-d7f3516"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:33:55.2995246Z"},"tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "963717" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:11 GMT + - Thu, 09 Apr 2026 17:34:07 GMT Expires: - "-1" Pragma: @@ -817,21 +884,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7bf236fc-6cfd-4e1c-8a84-8192a5458a46 + - a178630d-10eb-4069-80b7-137bfdaab4b2 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005111Z:7bf236fc-6cfd-4e1c-8a84-8192a5458a46 + - EASTUS2:20260409T173407Z:a178630d-10eb-4069-80b7-137bfdaab4b2 X-Msedge-Ref: - - 'Ref A: 0132FB700C074FACA1C1992C7556D4B5 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:05Z' + - 'Ref A: 83AD6E1596264F45B378EE18A6947EC8 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:03Z' status: 200 OK code: 200 - duration: 6.85923725s - - id: 12 + duration: 4.537890792s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -850,10 +917,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 6d4979f14a8e2e1a775d11df76d9634f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -861,18 +928,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 852897 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "852897" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:12 GMT + - Thu, 09 Apr 2026 17:34:10 GMT Expires: - "-1" Pragma: @@ -884,21 +951,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a1533ad9-aaa6-4c01-b8c4-cd3c3c8d4681 + - 6bdf9f69-9e21-4057-a44f-1021f28dd2d5 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005113Z:a1533ad9-aaa6-4c01-b8c4-cd3c3c8d4681 + - EASTUS2:20260409T173410Z:6bdf9f69-9e21-4057-a44f-1021f28dd2d5 X-Msedge-Ref: - - 'Ref A: 60F2E99652534F4AB16FC698EA0D1316 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:12Z' + - 'Ref A: ECFFD8461183427D92743864D75EDC0B Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:07Z' status: 200 OK code: 200 - duration: 1.2461405s - - id: 13 + duration: 2.718125042s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -917,10 +984,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 6d4979f14a8e2e1a775d11df76d9634f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -928,18 +995,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 253743 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","location":"eastus2","name":"azdtest-dce66f2-1770079792","properties":{"correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceName":"rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT30.2952569S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:26Z"},"environmentName":{"type":"String","value":"azdtest-dce66f2"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-03T00:50:56.7923346Z"},"tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "253743" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:15 GMT + - Thu, 09 Apr 2026 17:34:12 GMT Expires: - "-1" Pragma: @@ -951,21 +1018,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - edc5ec70-7749-4681-9f28-9051eae22c4d + - 2021f875-6b74-4c69-92ec-46d25495cd9e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005115Z:edc5ec70-7749-4681-9f28-9051eae22c4d + - EASTUS2:20260409T173412Z:2021f875-6b74-4c69-92ec-46d25495cd9e X-Msedge-Ref: - - 'Ref A: 6198FC8E91D440CDAB7372759220CE52 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:13Z' + - 'Ref A: A02DB88A3AFC402292121BDA024E0187 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:10Z' status: 200 OK code: 200 - duration: 2.177866541s - - id: 14 + duration: 1.589373084s + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 6d4979f14a8e2e1a775d11df76d9634f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:34:12 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6d4979f14a8e2e1a775d11df76d9634f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 50e369fd-ef2f-4b96-a3e3-f8c6ffed8615 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T173413Z:50e369fd-ef2f-4b96-a3e3-f8c6ffed8615 + X-Msedge-Ref: + - 'Ref A: 62B504B384C6439A89C872339A432480 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:12Z' + status: 200 OK + code: 200 + duration: 835.381958ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -984,10 +1118,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - 6d4979f14a8e2e1a775d11df76d9634f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -995,18 +1129,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:16 GMT + - Thu, 09 Apr 2026 17:34:13 GMT Expires: - "-1" Pragma: @@ -1018,32 +1152,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bd4ac340-cd4b-49e2-987d-0352f56b8099 + - 8297b1cc-8348-47ec-bfee-c30b6623210a X-Ms-Routing-Request-Id: - - WESTUS:20260203T005116Z:bd4ac340-cd4b-49e2-987d-0352f56b8099 + - EASTUS:20260409T173413Z:8297b1cc-8348-47ec-bfee-c30b6623210a X-Msedge-Ref: - - 'Ref A: 7E67248974534833A532F9BAEE483ED8 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:15Z' + - 'Ref A: D8C4FD190BE2491EBF41B183633EEB30 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:13Z' status: 200 OK code: 200 - duration: 976.061208ms - - id: 15 + duration: 569.609708ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4547 + content_length: 4546 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' form: {} headers: Accept: @@ -1053,13 +1187,13 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4547" + - "4546" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -1068,18 +1202,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5124 + content_length: 5122 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"9492071610990153753\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"15782242401159728732\"}}}","templateHash":"15782242401159728732"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"6602963692698314495\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"4488259817381607990\"}}}","templateHash":"4488259817381607990"}' headers: Cache-Control: - no-cache Content-Length: - - "5124" + - "5122" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:16 GMT + - Thu, 09 Apr 2026 17:34:13 GMT Expires: - "-1" Pragma: @@ -1091,19 +1225,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 5086b718-2df8-4afc-b109-7d2f3f739da6 + - 63ade5c3-9cc6-4dfc-aa40-61c5521abf2e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005116Z:5086b718-2df8-4afc-b109-7d2f3f739da6 + - EASTUS2:20260409T173413Z:63ade5c3-9cc6-4dfc-aa40-61c5521abf2e X-Msedge-Ref: - - 'Ref A: FA03F2A7CCF5461C8ACB58800B0E086F Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:16Z' + - 'Ref A: 68CFF0F640284A7CA67B66BCF7818966 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:13Z' status: 200 OK code: 200 - duration: 184.482083ms - - id: 16 + duration: 82.374583ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1122,10 +1256,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2?api-version=2025-03-01 + - 6d4979f14a8e2e1a775d11df76d9634f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516?api-version=2025-03-01 method: HEAD response: proto: HTTP/2.0 @@ -1142,7 +1276,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:51:16 GMT + - Thu, 09 Apr 2026 17:34:13 GMT Expires: - "-1" Pragma: @@ -1154,21 +1288,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22e7db7cd4a39aa59bd80a5773214cec + - 6d4979f14a8e2e1a775d11df76d9634f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cd03b4f2-2501-498f-96bc-943193097a17 + - bec2a583-6979-43d3-8358-ee99c8cad69e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005117Z:cd03b4f2-2501-498f-96bc-943193097a17 + - EASTUS2:20260409T173414Z:bec2a583-6979-43d3-8358-ee99c8cad69e X-Msedge-Ref: - - 'Ref A: 67D7C4F7B1724832B9FFEE5AA7474997 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:17Z' + - 'Ref A: DD1F59DD12A340F88497D353C71E28B6 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:14Z' status: 204 No Content code: 204 - duration: 163.282917ms - - id: 17 + duration: 63.928083ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1189,10 +1323,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1200,18 +1334,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 963717 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","location":"eastus2","name":"azdtest-d7f3516-1775755989","properties":{"correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceName":"rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT26.5307597S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:28Z"},"environmentName":{"type":"String","value":"azdtest-d7f3516"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:33:55.2995246Z"},"tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "963717" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:24 GMT + - Thu, 09 Apr 2026 17:34:19 GMT Expires: - "-1" Pragma: @@ -1223,21 +1357,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9a9c039d-e950-45e3-92bb-13371ff00346 + - c4cdabe4-2be5-4994-835d-2d069025f024 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005125Z:9a9c039d-e950-45e3-92bb-13371ff00346 + - EASTUS:20260409T173419Z:c4cdabe4-2be5-4994-835d-2d069025f024 X-Msedge-Ref: - - 'Ref A: 1461C8610DC14A43B76A0636D6E32218 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:19Z' + - 'Ref A: 20355773FD5448EBB4EFD84197C5D278 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:15Z' status: 200 OK code: 200 - duration: 6.158970041s - - id: 18 + duration: 4.002261208s + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1256,10 +1390,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1267,18 +1401,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 852897 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "852897" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:26 GMT + - Thu, 09 Apr 2026 17:34:22 GMT Expires: - "-1" Pragma: @@ -1290,21 +1424,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f3f77055-b5c7-4ca3-9142-2820c1006efd + - 0e7c8297-bb64-439f-bdbb-e68b0a792639 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005126Z:f3f77055-b5c7-4ca3-9142-2820c1006efd + - EASTUS:20260409T173422Z:0e7c8297-bb64-439f-bdbb-e68b0a792639 X-Msedge-Ref: - - 'Ref A: 2888DB4E155C47DFABE68858F72995F4 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:25Z' + - 'Ref A: 4A20F172CABB4736AE31504D19D0C398 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:19Z' status: 200 OK code: 200 - duration: 1.089731459s - - id: 19 + duration: 2.500954541s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1323,10 +1457,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1334,18 +1468,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 254797 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","location":"eastus2","name":"azdtest-dce66f2-1770079792","properties":{"correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceName":"rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT30.2952569S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:26Z"},"environmentName":{"type":"String","value":"azdtest-dce66f2"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-03T00:50:56.7923346Z"},"tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "254797" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:28 GMT + - Thu, 09 Apr 2026 17:34:23 GMT Expires: - "-1" Pragma: @@ -1357,21 +1491,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c0e15b65-5759-45dc-aec9-7ae37fe5eae4 + - cb1132df-d69a-4412-a028-592589ddef48 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005128Z:c0e15b65-5759-45dc-aec9-7ae37fe5eae4 + - EASTUS:20260409T173424Z:cb1132df-d69a-4412-a028-592589ddef48 X-Msedge-Ref: - - 'Ref A: AE836194C9F74F4FB61D288623C9F590 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:26Z' + - 'Ref A: 36E7CC0A951D41F59B1DDB1EAB91E2AC Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:22Z' status: 200 OK code: 200 - duration: 2.0865725s - - id: 20 + duration: 1.656304542s + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:34:24 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 0bc194ed51f05dd9e1c324038dd49fc3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 883cdba9-aad7-4d33-a879-71e9f153c2a5 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T173424Z:883cdba9-aad7-4d33-a879-71e9f153c2a5 + X-Msedge-Ref: + - 'Ref A: BC12198E895E43DB83E3F5B9AF04F622 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:24Z' + status: 200 OK + code: 200 + duration: 781.625708ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1390,10 +1591,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1401,18 +1602,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:29 GMT + - Thu, 09 Apr 2026 17:34:25 GMT Expires: - "-1" Pragma: @@ -1424,21 +1625,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6a086db9-00cb-4c65-8bc2-cfe8c395d026 + - d167bb93-bae9-4efd-a185-0f7d7eac678b X-Ms-Routing-Request-Id: - - WESTUS:20260203T005129Z:6a086db9-00cb-4c65-8bc2-cfe8c395d026 + - EASTUS:20260409T173425Z:d167bb93-bae9-4efd-a185-0f7d7eac678b X-Msedge-Ref: - - 'Ref A: BDCD77DB32944CA79D8DEB26A84A3F2E Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:28Z' + - 'Ref A: 3472246D5C6E466FB113E2BB8F004680 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:25Z' status: 200 OK code: 200 - duration: 821.40825ms - - id: 21 + duration: 442.805833ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1459,10 +1660,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1470,18 +1671,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:50:56.7923346Z","duration":"PT30.2952569S","correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:28Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:33:55.2995246Z","duration":"PT26.5307597S","correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:29 GMT + - Thu, 09 Apr 2026 17:34:25 GMT Expires: - "-1" Pragma: @@ -1493,21 +1694,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 85f5e37d-bd60-4156-afd4-50d0bc334014 + - 0da73a68-4b9f-433c-8dba-38e27d777fa9 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005130Z:85f5e37d-bd60-4156-afd4-50d0bc334014 + - EASTUS:20260409T173425Z:0da73a68-4b9f-433c-8dba-38e27d777fa9 X-Msedge-Ref: - - 'Ref A: DF319311E0744DC7B3646F5BD2F51C16 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:29Z' + - 'Ref A: 67A1B3E9A69341A6B63EDA3DD132AB28 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:25Z' status: 200 OK code: 200 - duration: 268.369875ms - - id: 22 + duration: 114.189833ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1528,10 +1729,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/resources?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1541,7 +1742,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m","name":"stqkmdsjcr7kx7m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k","name":"sthgngsljiw7i2k","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516"}}]}' headers: Cache-Control: - no-cache @@ -1550,7 +1751,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:29 GMT + - Thu, 09 Apr 2026 17:34:25 GMT Expires: - "-1" Pragma: @@ -1562,21 +1763,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 95bd2237-70ed-4908-8cda-1a156a79c4a8 + - be4aeab0-c0b2-490c-8742-cf5d96c21916 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005130Z:95bd2237-70ed-4908-8cda-1a156a79c4a8 + - EASTUS2:20260409T173425Z:be4aeab0-c0b2-490c-8742-cf5d96c21916 X-Msedge-Ref: - - 'Ref A: 337CD83870024A29B092E3E6AFA19C92 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:30Z' + - 'Ref A: ADA26B7C9B5A4A6EB8D6800155325D7F Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:25Z' status: 200 OK code: 200 - duration: 309.431291ms - - id: 23 + duration: 77.055ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1597,10 +1798,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1608,18 +1809,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:50:56.7923346Z","duration":"PT30.2952569S","correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:28Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:33:55.2995246Z","duration":"PT26.5307597S","correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:30 GMT + - Thu, 09 Apr 2026 17:34:25 GMT Expires: - "-1" Pragma: @@ -1631,21 +1832,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1ea02e54-dbad-4d68-bead-9bc1b96ea4b0 + - 5f26dc0c-a3d8-4a68-9113-ea9b8d56283b X-Ms-Routing-Request-Id: - - EASTUS2:20260203T005130Z:1ea02e54-dbad-4d68-bead-9bc1b96ea4b0 + - EASTUS:20260409T173425Z:5f26dc0c-a3d8-4a68-9113-ea9b8d56283b X-Msedge-Ref: - - 'Ref A: E7E283B4014D494C866CA9159B0180C3 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:30Z' + - 'Ref A: 21C946371EAD49C7B502909D0A1FD7A0 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:25Z' status: 200 OK code: 200 - duration: 285.174625ms - - id: 24 + duration: 123.933042ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1666,10 +1867,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/resources?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1679,7 +1880,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m","name":"stqkmdsjcr7kx7m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k","name":"sthgngsljiw7i2k","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516"}}]}' headers: Cache-Control: - no-cache @@ -1688,7 +1889,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:51:30 GMT + - Thu, 09 Apr 2026 17:34:25 GMT Expires: - "-1" Pragma: @@ -1700,21 +1901,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2f58ba6b-d2cd-4dde-ade1-f429f204ff41 + - 0ddb1a80-5c50-4c6c-9f98-78a7cb4c25ce X-Ms-Routing-Request-Id: - - WESTUS:20260203T005131Z:2f58ba6b-d2cd-4dde-ade1-f429f204ff41 + - EASTUS2:20260409T173426Z:0ddb1a80-5c50-4c6c-9f98-78a7cb4c25ce X-Msedge-Ref: - - 'Ref A: EBCC2EB25B894E399E4A7CAE2669206F Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:30Z' + - 'Ref A: 6F6A725F73BF4177A3F73263CFA0C15A Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:25Z' status: 200 OK code: 200 - duration: 282.331333ms - - id: 25 + duration: 74.672917ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1735,10 +1936,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-dce66f2?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d7f3516?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1755,11 +1956,11 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:51:30 GMT + - Thu, 09 Apr 2026 17:34:25 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQ0U2NkYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056767529690805&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=Cj1H94CBYJ0m68ijMlgxqm6FAef1T8hiAPdE-38WK6HiNn3Hwz2-bOxrfcJs6YsJglFMoucB6sCfnnINkMc4WZsKnK2xWB9y7BcSeRAeiT_i56xZKlcpGQ_nqVHH6ch9TWL-AHzpPmW_E-XGtUO7ZJmIyNZpc1mPD2jbMQjKeuwqnrSXORcKB5kmwW360FZe4YmYKVmy58z8FBRB1wSklsghsaxaorDWi2iGdFcnR3xRT6HC5kTKEPRxbAIsSUonyhtyAw_GQSa3CzOFkgjFfeJZrv3XUCX4MrGKyK6-_kaFs3qvVRyA_rqOLel0syLQ9i8pJr_qlmPMwQdWN4jrOA&h=TYi5PEoHBft5eh2qhP4QCsXjS5MU6Y9BJ1KB3dMi_mI + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREN0YzNTE2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113529267154862&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=rmfwKFxwdIiF-fWFYLy-xU5GqPEOqLwTZHEbWhOaXLsupEC63oW8QiGUoBNN7OCvT29dbgglLzJ-onHFcc4ce0t0lrFSHnkgaDLykO3NX5NJVdtIY19SKxPjoByUDR2dXnnKVDYn52A6DCYQfSTeLDrgjKbnMVNcKHV36Dt0GKxVAxcXMmn2rMciNla9YMin1tZlyaHCe5g8BPFK4XVUFpxxmyjlEcsrhuDeMK1UVJdK6KXL7V022CPS5MhqZQejPojROYuuwPfy16rIYa9wdwL4Y8LM1LkE-efmzxR5cfB_eySwnMe2uyMNGvQnKELuWLDn0K5MS2h5IfCdy633Iw&h=RGeIPVKUCX94vRB_lhr4bdaiuTFD2FU23g6D-0Vq-5o Pragma: - no-cache Retry-After: @@ -1771,21 +1972,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - 1b900bae-000a-4c08-a451-4e385119eb66 + - 0fb098f3-e412-4f39-8339-ab0d2e2d7816 X-Ms-Routing-Request-Id: - - EASTUS2:20260203T005131Z:1b900bae-000a-4c08-a451-4e385119eb66 + - EASTUS2:20260409T173426Z:0fb098f3-e412-4f39-8339-ab0d2e2d7816 X-Msedge-Ref: - - 'Ref A: 77B83317C8EF48D2A67C6DE4CA409111 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:51:31Z' + - 'Ref A: C82449F163E04FCBB99802E0392BF0BA Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:34:26Z' status: 202 Accepted code: 202 - duration: 213.813209ms - - id: 26 + duration: 247.658875ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1804,10 +2005,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQ0U2NkYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056767529690805&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=Cj1H94CBYJ0m68ijMlgxqm6FAef1T8hiAPdE-38WK6HiNn3Hwz2-bOxrfcJs6YsJglFMoucB6sCfnnINkMc4WZsKnK2xWB9y7BcSeRAeiT_i56xZKlcpGQ_nqVHH6ch9TWL-AHzpPmW_E-XGtUO7ZJmIyNZpc1mPD2jbMQjKeuwqnrSXORcKB5kmwW360FZe4YmYKVmy58z8FBRB1wSklsghsaxaorDWi2iGdFcnR3xRT6HC5kTKEPRxbAIsSUonyhtyAw_GQSa3CzOFkgjFfeJZrv3XUCX4MrGKyK6-_kaFs3qvVRyA_rqOLel0syLQ9i8pJr_qlmPMwQdWN4jrOA&h=TYi5PEoHBft5eh2qhP4QCsXjS5MU6Y9BJ1KB3dMi_mI + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREN0YzNTE2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113529267154862&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=rmfwKFxwdIiF-fWFYLy-xU5GqPEOqLwTZHEbWhOaXLsupEC63oW8QiGUoBNN7OCvT29dbgglLzJ-onHFcc4ce0t0lrFSHnkgaDLykO3NX5NJVdtIY19SKxPjoByUDR2dXnnKVDYn52A6DCYQfSTeLDrgjKbnMVNcKHV36Dt0GKxVAxcXMmn2rMciNla9YMin1tZlyaHCe5g8BPFK4XVUFpxxmyjlEcsrhuDeMK1UVJdK6KXL7V022CPS5MhqZQejPojROYuuwPfy16rIYa9wdwL4Y8LM1LkE-efmzxR5cfB_eySwnMe2uyMNGvQnKELuWLDn0K5MS2h5IfCdy633Iw&h=RGeIPVKUCX94vRB_lhr4bdaiuTFD2FU23g6D-0Vq-5o method: GET response: proto: HTTP/2.0 @@ -1824,7 +2025,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:52:47 GMT + - Thu, 09 Apr 2026 17:35:41 GMT Expires: - "-1" Pragma: @@ -1836,21 +2037,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 816f1daf-b5ed-4749-b95b-bd12245acb88 + - 2901ace8-fd50-48f5-bf29-17c7bcbabb61 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005248Z:816f1daf-b5ed-4749-b95b-bd12245acb88 + - EASTUS2:20260409T173541Z:2901ace8-fd50-48f5-bf29-17c7bcbabb61 X-Msedge-Ref: - - 'Ref A: 73A7ED07CA29482AAED9936486454648 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:52:48Z' + - 'Ref A: C9BCA40E94CA4671BCE6E5AA8169AEC9 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:35:41Z' status: 200 OK code: 200 - duration: 307.467917ms - - id: 27 + duration: 68.0425ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1871,10 +2072,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1882,18 +2083,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2746 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:50:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:50:56.7923346Z","duration":"PT30.2952569S","correlationId":"e7ac4fe6db7263c22f6e17cd0ab40068","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:33:28Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:33:55.2995246Z","duration":"PT26.5307597S","correlationId":"cb0b7914b98a4a7b9ef35b04586ed120","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2746" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:48 GMT + - Thu, 09 Apr 2026 17:35:41 GMT Expires: - "-1" Pragma: @@ -1905,21 +2106,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5b7bcf77-a975-4c03-9ab7-b52f38666f69 + - 40db3736-b241-42d4-b0ee-f326a0b2dea1 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005248Z:5b7bcf77-a975-4c03-9ab7-b52f38666f69 + - EASTUS:20260409T173542Z:40db3736-b241-42d4-b0ee-f326a0b2dea1 X-Msedge-Ref: - - 'Ref A: D0ED8F32F20046BF82E309EC66E82399 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:52:48Z' + - 'Ref A: 1B9071174090404DBCFD58CC60F2B2F8 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:35:41Z' status: 200 OK code: 200 - duration: 371.513041ms - - id: 28 + duration: 152.342459ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1930,7 +2131,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-dce66f2"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7f3516"}}' form: {} headers: Accept: @@ -1944,10 +2145,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1957,10 +2158,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-dce66f2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:52:49.4477237Z","duration":"PT0.0003841S","correlationId":"1bed11f528cd85af63d026c11724e564","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7f3516"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:35:42.2522868Z","duration":"PT0.0009346S","correlationId":"0bc194ed51f05dd9e1c324038dd49fc3","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315269160153632?api-version=2021-04-01&t=639056767716040688&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=pCktgbbZ22sJXQBWMFg9taQ_iRuWYrIcXjVADXEG7jy8NzhpzB7Kq2_Zg-uJu3S0Qk7FDw0d0j7na8m42IK8rGzqxGpjItJ0_j6x20OTlrbGjU0Hy9NRrxRN08smyl54EbfpcQ23jNF_iKClD3P0swXjs6J09v4TYf8qZScYkDfRb-l6KXspWbfxhOqizeU0HNgp4NTqd3eHU0xoXSTBvti5jO9zovUBxMEOv_OtYd50WQAvHDzy-8v2ZuiVQiywYvzzsUNB3PqNnFdtvGetoLyUHgPk3nBdEGT6g8ztMwqJ0fP334wsvyz-Ky2C8Na6HOeSIW1k7yET2ESOvQ0ZVw&h=h5irL7NAC0YTUjI3EOz6GTQrdDGstgh0sRRQwSRhIGU + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258507432241469?api-version=2021-04-01&t=639113529424554110&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=f5LusfSmvJtZqnveJIkvPv5-G__ZNA3wynnGlaDL9QbZP-NMdHS46yvIzDkFtN_0Sr_SZsXSBFMyyDkWNjg5bB_UEhtj7M_d2BI1wRO8tjj5aqUUEn62miBztuk0zDVKsPDglYNpduUnmj384HsDxlAr0iz-zvc8mWp9Awn7n2D_laR2RWNRawduJJBUnke02YY_PqkPeYp1S20xNmKmIRbaW0lxm8nrbCbosjliO3YAIfBFZ-pEryAGSbqs5m70-7RtS8KCd1AZnrLM-wklnLLT6UU9fvri6kkIlNg51FBohERft8gYR4M21HQcRQkG1UZ3UbRw0-E4JgEsdL890w&h=KWUbg7s0qT_AMQXUPFTd25O-UnTO-_V454qhz1deK4Q Cache-Control: - no-cache Content-Length: @@ -1968,7 +2169,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:52:51 GMT + - Thu, 09 Apr 2026 17:35:42 GMT Expires: - "-1" Pragma: @@ -1980,23 +2181,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - b8cdc52b-c402-4a29-87de-37b37109d0c4 + - 63b71c93-9455-4a77-8527-a3e6c1a848ba X-Ms-Routing-Request-Id: - - WESTUS:20260203T005251Z:b8cdc52b-c402-4a29-87de-37b37109d0c4 + - EASTUS2:20260409T173542Z:63b71c93-9455-4a77-8527-a3e6c1a848ba X-Msedge-Ref: - - 'Ref A: A4319F7508B347C9803D3761A875C604 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:52:48Z' + - 'Ref A: F255ECAB2E3840D09CD54A26B2E31166 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:35:42Z' status: 200 OK code: 200 - duration: 2.900388709s - - id: 29 + duration: 455.4825ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2015,10 +2216,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315269160153632?api-version=2021-04-01&t=639056767716040688&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=pCktgbbZ22sJXQBWMFg9taQ_iRuWYrIcXjVADXEG7jy8NzhpzB7Kq2_Zg-uJu3S0Qk7FDw0d0j7na8m42IK8rGzqxGpjItJ0_j6x20OTlrbGjU0Hy9NRrxRN08smyl54EbfpcQ23jNF_iKClD3P0swXjs6J09v4TYf8qZScYkDfRb-l6KXspWbfxhOqizeU0HNgp4NTqd3eHU0xoXSTBvti5jO9zovUBxMEOv_OtYd50WQAvHDzy-8v2ZuiVQiywYvzzsUNB3PqNnFdtvGetoLyUHgPk3nBdEGT6g8ztMwqJ0fP334wsvyz-Ky2C8Na6HOeSIW1k7yET2ESOvQ0ZVw&h=h5irL7NAC0YTUjI3EOz6GTQrdDGstgh0sRRQwSRhIGU + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258507432241469?api-version=2021-04-01&t=639113529424554110&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=f5LusfSmvJtZqnveJIkvPv5-G__ZNA3wynnGlaDL9QbZP-NMdHS46yvIzDkFtN_0Sr_SZsXSBFMyyDkWNjg5bB_UEhtj7M_d2BI1wRO8tjj5aqUUEn62miBztuk0zDVKsPDglYNpduUnmj384HsDxlAr0iz-zvc8mWp9Awn7n2D_laR2RWNRawduJJBUnke02YY_PqkPeYp1S20xNmKmIRbaW0lxm8nrbCbosjliO3YAIfBFZ-pEryAGSbqs5m70-7RtS8KCd1AZnrLM-wklnLLT6UU9fvri6kkIlNg51FBohERft8gYR4M21HQcRQkG1UZ3UbRw0-E4JgEsdL890w&h=KWUbg7s0qT_AMQXUPFTd25O-UnTO-_V454qhz1deK4Q method: GET response: proto: HTTP/2.0 @@ -2037,7 +2238,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:21 GMT + - Thu, 09 Apr 2026 17:36:12 GMT Expires: - "-1" Pragma: @@ -2049,21 +2250,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5c409bf3-6698-4186-b130-f7e0aa07bde4 + - 0e538b31-4121-4f43-a673-9fe80432ab93 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005322Z:5c409bf3-6698-4186-b130-f7e0aa07bde4 + - EASTUS2:20260409T173612Z:0e538b31-4121-4f43-a673-9fe80432ab93 X-Msedge-Ref: - - 'Ref A: 5A668E19FA544D1E8AE2A91873222478 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:22Z' + - 'Ref A: 8FE6E9ACBF70454DA22BDAB2E9697289 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:12Z' status: 200 OK code: 200 - duration: 393.823583ms - - id: 30 + duration: 199.549125ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2082,10 +2283,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 0bc194ed51f05dd9e1c324038dd49fc3 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2093,18 +2294,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-dce66f2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:52:52.2835447Z","duration":"PT2.835821S","correlationId":"1bed11f528cd85af63d026c11724e564","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7f3516"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:35:42.7026257Z","duration":"PT0.4503389S","correlationId":"0bc194ed51f05dd9e1c324038dd49fc3","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "604" + - "605" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:22 GMT + - Thu, 09 Apr 2026 17:36:12 GMT Expires: - "-1" Pragma: @@ -2116,21 +2317,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1bed11f528cd85af63d026c11724e564 + - 0bc194ed51f05dd9e1c324038dd49fc3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 53eda2d2-0969-412b-81ad-c0968de920bc + - 11d02483-7b0b-444d-9eef-26b65f7ab31c X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005322Z:53eda2d2-0969-412b-81ad-c0968de920bc + - EASTUS2:20260409T173612Z:11d02483-7b0b-444d-9eef-26b65f7ab31c X-Msedge-Ref: - - 'Ref A: 6448BA87EAC94E76A5248AFBC2111018 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:22Z' + - 'Ref A: 3D79BC0EF6AD4567B5FE95D6AAB06CF5 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:12Z' status: 200 OK code: 200 - duration: 236.290875ms - - id: 31 + duration: 73.173166ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2151,10 +2352,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -2162,18 +2363,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:27 GMT + - Thu, 09 Apr 2026 17:36:16 GMT Expires: - "-1" Pragma: @@ -2185,21 +2386,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4936e8c9-599b-4fc1-ba0b-a97ac53cb55e + - 26567468-6e58-41e0-8ade-d7667393a82e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005327Z:4936e8c9-599b-4fc1-ba0b-a97ac53cb55e + - EASTUS:20260409T173616Z:26567468-6e58-41e0-8ade-d7667393a82e X-Msedge-Ref: - - 'Ref A: B37DAF808B54476A877F5503BDE2757A Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:25Z' + - 'Ref A: BC4F4BF530D843D097B692E2A62FAEE5 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:15Z' status: 200 OK code: 200 - duration: 1.88595575s - - id: 32 + duration: 1.639989541s + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2220,10 +2421,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2231,18 +2432,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 961576 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","location":"eastus2","name":"azdtest-d7f3516-1775755989","properties":{"correlationId":"0bc194ed51f05dd9e1c324038dd49fc3","dependencies":[],"duration":"PT0.4503389S","mode":"Incremental","outputResources":[],"outputs":{},"parameters":{},"providers":[],"provisioningState":"Succeeded","templateHash":"14737569621737367585","timestamp":"2026-04-09T17:35:42.7026257Z"},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7f3516"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "961576" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:34 GMT + - Thu, 09 Apr 2026 17:36:20 GMT Expires: - "-1" Pragma: @@ -2254,21 +2455,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - b451b854-dad0-4b07-8136-fc7bc058a05e + - e957f417-3f78-4887-a95b-32395dde8c23 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005334Z:b451b854-dad0-4b07-8136-fc7bc058a05e + - EASTUS:20260409T173620Z:e957f417-3f78-4887-a95b-32395dde8c23 X-Msedge-Ref: - - 'Ref A: 426CAE2E667A497AA40CB7D5628D4E02 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:27Z' + - 'Ref A: CB2BD137F45F482B80234A95C337E14F Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:17Z' status: 200 OK code: 200 - duration: 6.921272833s - - id: 33 + duration: 3.562771792s + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2287,10 +2488,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2298,18 +2499,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 852897 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "852897" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:35 GMT + - Thu, 09 Apr 2026 17:36:23 GMT Expires: - "-1" Pragma: @@ -2321,21 +2522,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f2786523-6bd4-4a6f-870f-cd301c6dd9ab + - 0b14c40f-f9c4-4e56-ad5c-241ab9bd428b X-Ms-Routing-Request-Id: - - WESTUS:20260203T005336Z:f2786523-6bd4-4a6f-870f-cd301c6dd9ab + - EASTUS:20260409T173623Z:0b14c40f-f9c4-4e56-ad5c-241ab9bd428b X-Msedge-Ref: - - 'Ref A: 154A4023E5DD4487A9B3A53342E515F7 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:35Z' + - 'Ref A: 17C19D5A56DA4B2CB2AC8C3E2267F07E Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:20Z' status: 200 OK code: 200 - duration: 1.337366666s - - id: 34 + duration: 3.062909583s + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2354,10 +2555,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2365,18 +2566,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 252654 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","location":"eastus2","name":"azdtest-dce66f2-1770079792","properties":{"correlationId":"1bed11f528cd85af63d026c11724e564","dependencies":[],"duration":"PT2.835821S","mode":"Incremental","outputResources":[],"outputs":{},"parameters":{},"providers":[],"provisioningState":"Succeeded","templateHash":"14737569621737367585","timestamp":"2026-02-03T00:52:52.2835447Z"},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-dce66f2"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "252654" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:37 GMT + - Thu, 09 Apr 2026 17:36:24 GMT Expires: - "-1" Pragma: @@ -2388,21 +2589,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 151dce74-b084-40ba-a20f-86e225261e7a + - fcfd3b3c-558e-4b8b-8e34-28de37ef10f1 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005338Z:151dce74-b084-40ba-a20f-86e225261e7a + - EASTUS:20260409T173625Z:fcfd3b3c-558e-4b8b-8e34-28de37ef10f1 X-Msedge-Ref: - - 'Ref A: 187BFE710CF24754927F497F21127385 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:36Z' + - 'Ref A: 571FCC5ECD244E73B6D3531DEF7C293A Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:24Z' status: 200 OK code: 200 - duration: 1.703395792s - - id: 35 + duration: 1.299892833s + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2421,10 +2622,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2432,18 +2633,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 415580 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:38 GMT + - Thu, 09 Apr 2026 17:36:25 GMT Expires: - "-1" Pragma: @@ -2455,68 +2656,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1f209505-d0d4-46cb-9255-35b5e6377fab + - a2c818b7-644b-4f3e-a422-81d56fee7b4a X-Ms-Routing-Request-Id: - - WESTUS:20260203T005339Z:1f209505-d0d4-46cb-9255-35b5e6377fab + - EASTUS:20260409T173626Z:a2c818b7-644b-4f3e-a422-81d56fee7b4a X-Msedge-Ref: - - 'Ref A: 30995964FFDC4D1F82B4E00B795FCFE6 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:38Z' + - 'Ref A: 9AF81F9B6D344E6B948084E0351FA796 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:25Z' status: 200 OK code: 200 - duration: 741.701958ms - - id: 36 + duration: 802.27075ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4547 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4547" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 - method: POST + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5124 + content_length: 136970 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"9492071610990153753\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"15782242401159728732\"}}}","templateHash":"15782242401159728732"}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5124" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:38 GMT + - Thu, 09 Apr 2026 17:36:26 GMT Expires: - "-1" Pragma: @@ -2528,30 +2723,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "799" + - 386827073037b3e0edf4256261a54472 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 85c56009-72af-4dd6-8324-62cf0479e96e + - d7abf0d7-1bbf-4abf-847b-91e391eb9ffa X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005339Z:85c56009-72af-4dd6-8324-62cf0479e96e + - EASTUS:20260409T173626Z:d7abf0d7-1bbf-4abf-847b-91e391eb9ffa X-Msedge-Ref: - - 'Ref A: 6650056BA06D4ABE881CCD1E4197B3A3 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:39Z' + - 'Ref A: E133BD9BA9D1449BBC18EFCCC0C8E2D7 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:26Z' status: 200 OK code: 200 - duration: 85.202375ms - - id: 37 + duration: 593.38275ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5036 + content_length: 4546 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-dce66f2","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' form: {} headers: Accept: @@ -2561,14 +2758,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5036" + - "4546" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/validate?api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -2576,18 +2773,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2119 + content_length: 5122 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:39Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:53:39.6228441Z","duration":"PT0S","correlationId":"c04eeb3aae64b9582f5882e6cd24daa2","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"6602963692698314495\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"4488259817381607990\"}}}","templateHash":"4488259817381607990"}' headers: Cache-Control: - no-cache Content-Length: - - "2119" + - "5122" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:40 GMT + - Thu, 09 Apr 2026 17:36:26 GMT Expires: - "-1" Pragma: @@ -2599,32 +2796,103 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" + - 386827073037b3e0edf4256261a54472 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" + X-Ms-Request-Id: + - 25c45550-e079-4fbc-b096-a4742fed041e + X-Ms-Routing-Request-Id: + - EASTUS:20260409T173626Z:25c45550-e079-4fbc-b096-a4742fed041e + X-Msedge-Ref: + - 'Ref A: C840C842BC4B4A509823BF948AF4EE69 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:26Z' + status: 200 OK + code: 200 + duration: 79.240458ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5035 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d7f3516","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "5035" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2117 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:36:28Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:36:28.679518Z","duration":"PT0S","correlationId":"386827073037b3e0edf4256261a54472","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2117" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:36:29 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 386827073037b3e0edf4256261a54472 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 0827fc9b-41bf-4a70-a54e-8bfef2a0fb45 + - 13815fa2-d1ce-4339-b7a5-841d44ac3012 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005340Z:0827fc9b-41bf-4a70-a54e-8bfef2a0fb45 + - EASTUS2:20260409T173629Z:13815fa2-d1ce-4339-b7a5-841d44ac3012 X-Msedge-Ref: - - 'Ref A: 75F34A6DCB424938ABBDB13F695AABA7 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:39Z' + - 'Ref A: AAEB253C0FF04AB883F3107483022875 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:28Z' status: 200 OK code: 200 - duration: 1.836436792s - - id: 38 + duration: 1.428378541s + - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5036 + content_length: 5035 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-dce66f2","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"15782242401159728732"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false,"reference":null},"environmentName":{"value":"azdtest-d7f3516","reference":null},"intTagValue":{"value":678,"reference":null},"location":{"value":"eastus2","reference":null},"secureValue":{"value":"","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"}}' form: {} headers: Accept: @@ -2634,14 +2902,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5036" + - "5035" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2649,20 +2917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1706 + content_length: 1705 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:41Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:53:41.9262093Z","duration":"PT0.0004408S","correlationId":"c04eeb3aae64b9582f5882e6cd24daa2","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:36:29Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String","value":null}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:36:29.9381918Z","duration":"PT0.0007644S","correlationId":"386827073037b3e0edf4256261a54472","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315268635488031?api-version=2021-04-01&t=639056768248012418&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GPNsKvAwwoWg2wDlOBJr4-r5E0pTQMBjFd4lvY1LScAOaDfCTk5ryYg1zWUVWAodafffX0G8ItI75tUurH_6NFK8Ng-euE91HtXbyf2_CNckRbTG-HEFls7rDb0Ao7NzhA1BQisDX5Tia1MoWWec2B8AYVeQLbhy6fwvZnA4MU5hS6y2P3_YmFl32hyLWlJgTtZXPRrqDLyR06z3y181YQyZbu_E_XE2Tz6VaGAOewJiuvNizqCc1tid25MrPPlvmTpRua6XN_25hMeMKwxx0JumcugtZkaS4Gdb6iBFkC6ASsYmhhCZQU1rdEvdxcRoRU1-RXhCaPCjl78Pbk2HjQ&h=bWrH373w5JwJDWGlI975vzYKLDa7meB0euChaRxAF-w + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258506955266383?api-version=2021-04-01&t=639113529902819412&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=UTqCS_gBiYwtMMVVJH-9iYUo0RhN8LGZKb1_p0lSD-Xj_i7kMoj1ogL52ZJE8GJmha2GYiU5v8RZPenYBZI0NHQpWpw7rhIqYi8jEcsDSjd9zR_UJZnm5DESmlZdegwTy5uo9mCGn89JBUhEKkWn_VvYuQxz5cLmQHa8OTY84rbDHtYXqkXMX0fqKDOsXEbcp90SWNX8WDMCwxbOnPivXAydGAVYtuNPgLQFKmK7uETGF_K8dEmOGtjtfWF1M1LmvlJ5XJyJeJnf6Moc0A3xMt2h0fyWMag9W9tosq2ZcXyc8Ywx7R5hB7PyU2Rbwm08iquiYlh9f22JKXk559Vgiw&h=SBjZX2B1-stDzcNsXHXkekUzAY-de-VVzkOvplYmT94 Cache-Control: - no-cache Content-Length: - - "1706" + - "1705" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:53:44 GMT + - Thu, 09 Apr 2026 17:36:29 GMT Expires: - "-1" Pragma: @@ -2674,23 +2942,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - fe13449c-9c49-4ed4-bdf6-b10872207422 + - 09358182-f751-40bf-86f4-b0a92336d27a X-Ms-Routing-Request-Id: - - WESTUS:20260203T005344Z:fe13449c-9c49-4ed4-bdf6-b10872207422 + - EASTUS2:20260409T173630Z:09358182-f751-40bf-86f4-b0a92336d27a X-Msedge-Ref: - - 'Ref A: EC456B87A6A844BCB636CB4FAB966AA3 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:53:41Z' + - 'Ref A: D0F55C81B755439F87986E14B60DD4E0 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:36:29Z' status: 200 OK code: 200 - duration: 3.846908625s - - id: 39 + duration: 621.928167ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2709,10 +2977,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315268635488031?api-version=2021-04-01&t=639056768248012418&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GPNsKvAwwoWg2wDlOBJr4-r5E0pTQMBjFd4lvY1LScAOaDfCTk5ryYg1zWUVWAodafffX0G8ItI75tUurH_6NFK8Ng-euE91HtXbyf2_CNckRbTG-HEFls7rDb0Ao7NzhA1BQisDX5Tia1MoWWec2B8AYVeQLbhy6fwvZnA4MU5hS6y2P3_YmFl32hyLWlJgTtZXPRrqDLyR06z3y181YQyZbu_E_XE2Tz6VaGAOewJiuvNizqCc1tid25MrPPlvmTpRua6XN_25hMeMKwxx0JumcugtZkaS4Gdb6iBFkC6ASsYmhhCZQU1rdEvdxcRoRU1-RXhCaPCjl78Pbk2HjQ&h=bWrH373w5JwJDWGlI975vzYKLDa7meB0euChaRxAF-w + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258506955266383?api-version=2021-04-01&t=639113529902819412&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=UTqCS_gBiYwtMMVVJH-9iYUo0RhN8LGZKb1_p0lSD-Xj_i7kMoj1ogL52ZJE8GJmha2GYiU5v8RZPenYBZI0NHQpWpw7rhIqYi8jEcsDSjd9zR_UJZnm5DESmlZdegwTy5uo9mCGn89JBUhEKkWn_VvYuQxz5cLmQHa8OTY84rbDHtYXqkXMX0fqKDOsXEbcp90SWNX8WDMCwxbOnPivXAydGAVYtuNPgLQFKmK7uETGF_K8dEmOGtjtfWF1M1LmvlJ5XJyJeJnf6Moc0A3xMt2h0fyWMag9W9tosq2ZcXyc8Ywx7R5hB7PyU2Rbwm08iquiYlh9f22JKXk559Vgiw&h=SBjZX2B1-stDzcNsXHXkekUzAY-de-VVzkOvplYmT94 method: GET response: proto: HTTP/2.0 @@ -2731,7 +2999,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:15 GMT + - Thu, 09 Apr 2026 17:37:00 GMT Expires: - "-1" Pragma: @@ -2743,21 +3011,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a1fa27a8-cddf-4321-a9a9-e481422d1387 + - 7916d838-3fc8-4aff-9236-edfda1255050 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005415Z:a1fa27a8-cddf-4321-a9a9-e481422d1387 + - EASTUS:20260409T173700Z:7916d838-3fc8-4aff-9236-edfda1255050 X-Msedge-Ref: - - 'Ref A: 26722876A5454E0BB88E65A1C26A71F6 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:15Z' + - 'Ref A: FDD29FABF9FF4170B8474D823ECD6AFB Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:00Z' status: 200 OK code: 200 - duration: 330.537833ms - - id: 40 + duration: 177.207125ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2776,10 +3044,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2787,18 +3055,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2745 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:41Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:54:13.1024465Z","duration":"PT31.1762372S","correlationId":"c04eeb3aae64b9582f5882e6cd24daa2","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:36:29Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:36:55.6984408Z","duration":"PT25.760249S","correlationId":"386827073037b3e0edf4256261a54472","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2745" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:15 GMT + - Thu, 09 Apr 2026 17:37:00 GMT Expires: - "-1" Pragma: @@ -2810,21 +3078,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 60ee94f3-0c2d-458a-adad-bdbd79a72d07 + - 2a6156cf-a8c8-429f-8362-5c001726bfc2 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005416Z:60ee94f3-0c2d-458a-adad-bdbd79a72d07 + - EASTUS:20260409T173700Z:2a6156cf-a8c8-429f-8362-5c001726bfc2 X-Msedge-Ref: - - 'Ref A: 3344F7DB814D4119A59D87A6FEF1A65B Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:15Z' + - 'Ref A: 0DA1A55195E944ACAE882FDAB46C7136 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:00Z' status: 200 OK code: 200 - duration: 474.592458ms - - id: 41 + duration: 148.781166ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2845,10 +3113,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-dce66f2%27&api-version=2021-04-01 + - 386827073037b3e0edf4256261a54472 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d7f3516%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2858,7 +3126,7 @@ interactions: trailer: {} content_length: 429 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","name":"rg-azdtest-dce66f2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","DeleteAfter":"2026-02-03T01:53:41Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","name":"rg-azdtest-d7f3516","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","DeleteAfter":"2026-04-09T18:36:29Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2867,7 +3135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:15 GMT + - Thu, 09 Apr 2026 17:37:00 GMT Expires: - "-1" Pragma: @@ -2879,21 +3147,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c04eeb3aae64b9582f5882e6cd24daa2 + - 386827073037b3e0edf4256261a54472 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 379dcdb6-e0af-4c8f-9ed0-f4afc3c4a091 + - 322cd550-be4f-4174-b1f1-23116ac18a98 X-Ms-Routing-Request-Id: - - WESTUS:20260203T005416Z:379dcdb6-e0af-4c8f-9ed0-f4afc3c4a091 + - EASTUS2:20260409T173701Z:322cd550-be4f-4174-b1f1-23116ac18a98 X-Msedge-Ref: - - 'Ref A: CB152ECF6FF4474BA03289A6A7C2C1CB Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:16Z' + - 'Ref A: 80AAE0F087D94C39A261D3AF6C186808 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:00Z' status: 200 OK code: 200 - duration: 134.948709ms - - id: 42 + duration: 193.947959ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2914,10 +3182,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2925,18 +3193,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868365 + content_length: 963716 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2fouv%2f7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2bVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2f5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2f8iXS7f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","location":"eastus2","name":"azdtest-d7f3516-1775755989","properties":{"correlationId":"386827073037b3e0edf4256261a54472","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceName":"rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT25.760249S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:36:29Z"},"environmentName":{"type":"String","value":"azdtest-d7f3516"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"4488259817381607990","timestamp":"2026-04-09T17:36:55.6984408Z"},"tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1868365" + - "963716" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:23 GMT + - Thu, 09 Apr 2026 17:37:06 GMT Expires: - "-1" Pragma: @@ -2948,21 +3216,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a6abfded-ecc4-4633-85e0-46aca446257a + - 902c6c7b-d286-4d13-bccf-22788464f1aa X-Ms-Routing-Request-Id: - - WESTUS:20260203T005424Z:a6abfded-ecc4-4633-85e0-46aca446257a + - EASTUS2:20260409T173706Z:902c6c7b-d286-4d13-bccf-22788464f1aa X-Msedge-Ref: - - 'Ref A: 3CD4D659E4BD4BE8A0BF8F85D5A86C44 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:19Z' + - 'Ref A: CC619EC9A8514FF7BA9EBB2936635F2B Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:02Z' status: 200 OK code: 200 - duration: 5.677190666s - - id: 43 + duration: 4.077780959s + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2981,10 +3249,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdFBb4IwFMDxz2LPmrQ4zeJNLEzU10p5rXM3wxwRCCQbRsD43Vc0XnfYlnhq8%2Fouv%2F7PJC6L6lAcd9WhLLDM9sUXmZyJN41QR92t2NfVevdZHbqF5b4hE8J6zz2B2xra7YD0rxuqPN3f2HDcU5nvAk9OoX7joMMnwV1X8ZyH1PigPSrQ5SGamcD3D8WEXEX0JLm2e9BCmzCRerXkgQPdbMY8ZVxAls%2BVUZEyYm3MgttZhMz1da4WysAYMqXD3F0aal6FMXqTVT659MnG6yjOLy3OnywizUbQ6uH1xKSFiIVI60XI8rtJKD3SMjUvgHEtMHGs2%2F5sUEuMqWhjR04Hg84RSY3zmSdQTVddmuKY53fdQ3C3UAmVNiukAbWhfsAFjYUx4OAIPm0szIbWDaTxFXeLNHyI4%2F8iXS7f&api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2992,18 +3260,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 280198 + content_length: 852897 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2fKIZobS0A\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "280198" + - "852897" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:26 GMT + - Thu, 09 Apr 2026 17:37:08 GMT Expires: - "-1" Pragma: @@ -3015,21 +3283,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f86475dc-ad10-4e72-82b8-25a94e7f0945 + - 0a6d7519-227a-4982-9e6f-350ab52dc084 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005426Z:f86475dc-ad10-4e72-82b8-25a94e7f0945 + - EASTUS:20260409T173709Z:0a6d7519-227a-4982-9e6f-350ab52dc084 X-Msedge-Ref: - - 'Ref A: A2A106C5F0EE4206A9A04F106D0D576F Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:25Z' + - 'Ref A: 9C29A164296A4B7EA995FFCA8CDF8E3A Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:07Z' status: 200 OK code: 200 - duration: 1.941739583s - - id: 44 + duration: 2.387045167s + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3048,10 +3316,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNVrLKK83J0VEKdwXxjFC5qDxjGNfPPyjEw9nVLyTI0QdhQrB%2FKIZobS0A&api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3059,18 +3327,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 254797 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2fC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2bO%2brUx6Mb%2bfc8%2bXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2b7b9bqsz8Vr%2bkoTQ4DEA3PRi2DyQ8J%2fQTTdldBYH%2brDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2brbPZMuvO7AUIVR%2f6JozXWeCaQ1aLuwcp8%2fCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","location":"eastus2","name":"azdtest-dce66f2-1770079792","properties":{"correlationId":"c04eeb3aae64b9582f5882e6cd24daa2","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceName":"rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT31.1762372S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_PARAM":{"type":"Array","value":[]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"nullableParamOutput":{"type":"String"},"objecT_PARAM":{"type":"Object","value":{}},"object":{"type":"Object","value":{"array":[true,"abc",1234],"foo":"bar","inner":{"foo":"bar"}}},"string":{"type":"String","value":"abc"}},"parameters":{"arrayValue":{"type":"Array","value":[]},"boolTagValue":{"type":"Bool","value":false},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:41Z"},"environmentName":{"type":"String","value":"azdtest-dce66f2"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"nullableParam":{"type":"String"},"objectValue":{"type":"Object","value":{}},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15782242401159728732","timestamp":"2026-02-03T00:54:13.1024465Z"},"tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "254797" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:27 GMT + - Thu, 09 Apr 2026 17:37:10 GMT Expires: - "-1" Pragma: @@ -3082,21 +3350,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - dcad7d75-4dec-4f0e-a527-c043888bbb65 + - 13639b9e-a711-4ddd-bef2-5fe165b4b3a0 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005428Z:dcad7d75-4dec-4f0e-a527-c043888bbb65 + - EASTUS:20260409T173710Z:13639b9e-a711-4ddd-bef2-5fe165b4b3a0 X-Msedge-Ref: - - 'Ref A: 02D8A4C56A0A4BB5B510765DCD8796A9 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:27Z' + - 'Ref A: 6D70295179D64AF381F68A2E3970FF2A Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:09Z' status: 200 OK code: 200 - duration: 1.617786458s - - id: 45 + duration: 1.42927225s + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 17:37:11 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 7e84f17109181b6692f597b17e0b8fc0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - c6c7183f-cd8b-408e-b989-eb642ea49d4d + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T173711Z:c6c7183f-cd8b-408e-b989-eb642ea49d4d + X-Msedge-Ref: + - 'Ref A: F9533193208A47539B414EA6BF68603F Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:11Z' + status: 200 OK + code: 200 + duration: 948.257291ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3115,10 +3450,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=ZY9Rb4IwFIV%2FC31mCUVNFt7A1i2bvV3bWxb3ZhgzKCnJhoFh%2BO%2BrUx6Mb%2Bfc8%2BXknhMpGtdW7rhtq8ZhcyjdD0lOhKcGrYnP0pV9%2B7b9bqsz8Vr%2BkoTQ4DEA3PRi2DyQ8J%2FQTTdldBYH%2BrDKBNt1yn4wYdUcWJZpVjMV5StheQSYMYX5EvDzS1OQaxN1klnPiUEMO%2BrbPZMuvO7AUIVR%2F6JozXWeCaQ1aLuwcp8%2FCSxiQNvDXsSC8Q6w6CVTc8n8Z2NIlhxQp2trSOKOdR1eh03unV9nXsKLvQ1nkwWp8fmuz0h7dx3HPw%3D%3D&api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3126,18 +3461,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5305 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "5305" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:28 GMT + - Thu, 09 Apr 2026 17:37:12 GMT Expires: - "-1" Pragma: @@ -3149,21 +3484,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a1aed10a-793a-45c3-b367-a82d83252d60 + - 22461e40-5727-48f3-8343-b9b9a73723ad X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005429Z:a1aed10a-793a-45c3-b367-a82d83252d60 + - EASTUS2:20260409T173712Z:22461e40-5727-48f3-8343-b9b9a73723ad X-Msedge-Ref: - - 'Ref A: A9AA6400BB344CF0AF3DA649E467F954 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:28Z' + - 'Ref A: BE23C5722AB74821B8608B1875376A32 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:12Z' status: 200 OK code: 200 - duration: 942.8315ms - - id: 46 + duration: 494.378667ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3184,10 +3519,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3195,18 +3530,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2745 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:41Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:54:13.1024465Z","duration":"PT31.1762372S","correlationId":"c04eeb3aae64b9582f5882e6cd24daa2","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:36:29Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:36:55.6984408Z","duration":"PT25.760249S","correlationId":"386827073037b3e0edf4256261a54472","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2745" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:29 GMT + - Thu, 09 Apr 2026 17:37:12 GMT Expires: - "-1" Pragma: @@ -3218,21 +3553,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - da765991-f4b9-425d-bb56-305e503b9e1d + - 3fb051e5-20a0-4275-b9b9-06be3b4b0e9e X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005429Z:da765991-f4b9-425d-bb56-305e503b9e1d + - EASTUS:20260409T173712Z:3fb051e5-20a0-4275-b9b9-06be3b4b0e9e X-Msedge-Ref: - - 'Ref A: BEE60B83A50C46818CBD33598FEC8940 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:29Z' + - 'Ref A: E3593AD2A30848CFBE0D8C6DBF645F5B Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:12Z' status: 200 OK code: 200 - duration: 388.88875ms - - id: 47 + duration: 155.18175ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3253,10 +3588,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/resources?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3266,7 +3601,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m","name":"stqkmdsjcr7kx7m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k","name":"sthgngsljiw7i2k","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516"}}]}' headers: Cache-Control: - no-cache @@ -3275,7 +3610,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:29 GMT + - Thu, 09 Apr 2026 17:37:12 GMT Expires: - "-1" Pragma: @@ -3287,21 +3622,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - 4361f5fd-27a7-4f9a-bfc2-3498e930e518 + - 5420460f-6f16-4803-bd97-98db202494da X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005430Z:4361f5fd-27a7-4f9a-bfc2-3498e930e518 + - EASTUS:20260409T173712Z:5420460f-6f16-4803-bd97-98db202494da X-Msedge-Ref: - - 'Ref A: 77243DB8563240EBB9D16FDDE77BD349 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:30Z' + - 'Ref A: 2E279006A65941A199AD4C70B4B69545 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:12Z' status: 200 OK code: 200 - duration: 246.972834ms - - id: 48 + duration: 108.230458ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3322,10 +3657,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3333,18 +3668,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2745 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:41Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:54:13.1024465Z","duration":"PT31.1762372S","correlationId":"c04eeb3aae64b9582f5882e6cd24daa2","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:36:29Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:36:55.6984408Z","duration":"PT25.760249S","correlationId":"386827073037b3e0edf4256261a54472","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2745" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:30 GMT + - Thu, 09 Apr 2026 17:37:12 GMT Expires: - "-1" Pragma: @@ -3356,21 +3691,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0accde91-5bcf-40b5-87f4-e87e23d30dab + - 262ba213-122a-4539-81a6-68a7cd2fdbed X-Ms-Routing-Request-Id: - - EASTUS2:20260203T005430Z:0accde91-5bcf-40b5-87f4-e87e23d30dab + - EASTUS2:20260409T173712Z:262ba213-122a-4539-81a6-68a7cd2fdbed X-Msedge-Ref: - - 'Ref A: F9A25886059644AABD3776D28112476B Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:30Z' + - 'Ref A: EDA74935CBC249D6B3FA65F7A5389559 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:12Z' status: 200 OK code: 200 - duration: 280.490084ms - - id: 49 + duration: 93.26775ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3391,10 +3726,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/resources?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3404,7 +3739,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m","name":"stqkmdsjcr7kx7m","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k","name":"sthgngsljiw7i2k","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516"}}]}' headers: Cache-Control: - no-cache @@ -3413,7 +3748,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:54:30 GMT + - Thu, 09 Apr 2026 17:37:12 GMT Expires: - "-1" Pragma: @@ -3425,21 +3760,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b4408e3a-095f-45cf-aac3-2ca5899cfb65 + - 1d0088dc-2bb1-45e9-a510-49c39b855d85 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005431Z:b4408e3a-095f-45cf-aac3-2ca5899cfb65 + - EASTUS2:20260409T173713Z:1d0088dc-2bb1-45e9-a510-49c39b855d85 X-Msedge-Ref: - - 'Ref A: 599E15D7C82643E0B5A237F87A6D4DFC Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:30Z' + - 'Ref A: FC5AD72D65024D3F9E843A23A3046AE7 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:13Z' status: 200 OK code: 200 - duration: 308.625167ms - - id: 50 + duration: 83.332375ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3460,10 +3795,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-dce66f2?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d7f3516?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -3480,11 +3815,11 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:54:30 GMT + - Thu, 09 Apr 2026 17:37:12 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQ0U2NkYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056769186296650&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=QdSQsZiwHrlzBKiezVDKnBYgQboljgVqO4LXvkja14UiWT6jHwUhqBkKyHzn2ztBCpQ9WAYwB4Ujdu8liHpUnL1xI1mngEMKe6AAC9Wrt5o7R-ZQa66LNqvzFrfpEzlY0Yq0OduNfm6j5l7ifcgro6uOwf4U1N9oiJgiAM7rqTfN2QKaC8viEbCuCTPPWriQuVPIS7TblD_Yi82VKbYMoJJ-Axt7JiWwAId2lq7GfR2OCT1SLtmDhMs_kN6_OGqgT8SlzX-pLVtGhOp445S3-_bs_W7Q9boUR6LqdU7xbKVKfVr8rDbCVC_t8eUXPoSgmiqgwGsQgoP4CHaSxpBmeg&h=mTmIJvrv9MNVjUzYJ4J6gpRHFY9QG71sUczWY8Ge4jw + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREN0YzNTE2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113530937966144&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=ejiE5Stea6dBp0NNmzY3gbKCjV0tSMVqD3Q46KShaiJh4tWY6M2dfdyZcH6WhXeJrS5RqTdnAtTrCcXD9cng44Rhb7iuyQELwvTYidqiF7ruS5UXhI7iKHqzoKCL5xlw1BK0uroyt3lUSi1lMrgO65FqF5Ua0igNaEIbjPbSV1plT_TtMO3ZRde67vsNWnyH3xWiSMbQnO6cihSdoGaSk0-Gjef7MPm9EWv4QZsYdJVgOowsl-mjELPvzSJqjgOB2b6VrgTzoJ_67wSmlxBVysKK5R-Q5HopcFZSNc3idQ__PV029KEcNeFTQ-F-RlkdDeKXnExqKwMAXj45fuFmeg&h=3EUItJiJueV9FMQLM4B9uRytL3ORbMKXLnEFzbo2K2g Pragma: - no-cache Retry-After: @@ -3496,21 +3831,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - ff51ca2d-bc9c-47ce-9e1b-d21c36990fe1 + - 28397247-590e-48b7-a5d6-ea27feda6d45 X-Ms-Routing-Request-Id: - - EASTUS2:20260203T005431Z:ff51ca2d-bc9c-47ce-9e1b-d21c36990fe1 + - EASTUS2:20260409T173713Z:28397247-590e-48b7-a5d6-ea27feda6d45 X-Msedge-Ref: - - 'Ref A: B16BFDDD41094D6A8E24DC384F1B0255 Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:54:31Z' + - 'Ref A: 10A0B8288DAF4C638C0D23BC338104BA Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:37:13Z' status: 202 Accepted code: 202 - duration: 346.486667ms - - id: 51 + duration: 242.534458ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3529,10 +3864,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQ0U2NkYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639056769186296650&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=QdSQsZiwHrlzBKiezVDKnBYgQboljgVqO4LXvkja14UiWT6jHwUhqBkKyHzn2ztBCpQ9WAYwB4Ujdu8liHpUnL1xI1mngEMKe6AAC9Wrt5o7R-ZQa66LNqvzFrfpEzlY0Yq0OduNfm6j5l7ifcgro6uOwf4U1N9oiJgiAM7rqTfN2QKaC8viEbCuCTPPWriQuVPIS7TblD_Yi82VKbYMoJJ-Axt7JiWwAId2lq7GfR2OCT1SLtmDhMs_kN6_OGqgT8SlzX-pLVtGhOp445S3-_bs_W7Q9boUR6LqdU7xbKVKfVr8rDbCVC_t8eUXPoSgmiqgwGsQgoP4CHaSxpBmeg&h=mTmIJvrv9MNVjUzYJ4J6gpRHFY9QG71sUczWY8Ge4jw + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREN0YzNTE2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113530937966144&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=ejiE5Stea6dBp0NNmzY3gbKCjV0tSMVqD3Q46KShaiJh4tWY6M2dfdyZcH6WhXeJrS5RqTdnAtTrCcXD9cng44Rhb7iuyQELwvTYidqiF7ruS5UXhI7iKHqzoKCL5xlw1BK0uroyt3lUSi1lMrgO65FqF5Ua0igNaEIbjPbSV1plT_TtMO3ZRde67vsNWnyH3xWiSMbQnO6cihSdoGaSk0-Gjef7MPm9EWv4QZsYdJVgOowsl-mjELPvzSJqjgOB2b6VrgTzoJ_67wSmlxBVysKK5R-Q5HopcFZSNc3idQ__PV029KEcNeFTQ-F-RlkdDeKXnExqKwMAXj45fuFmeg&h=3EUItJiJueV9FMQLM4B9uRytL3ORbMKXLnEFzbo2K2g method: GET response: proto: HTTP/2.0 @@ -3549,7 +3884,7 @@ interactions: Content-Length: - "0" Date: - - Tue, 03 Feb 2026 00:55:33 GMT + - Thu, 09 Apr 2026 17:38:28 GMT Expires: - "-1" Pragma: @@ -3561,21 +3896,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 51b0c5e4-4fd1-42d8-a8d0-e7aebdd110bb + - 4962cd98-7197-4826-a4a3-9af365145fa3 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005534Z:51b0c5e4-4fd1-42d8-a8d0-e7aebdd110bb + - EASTUS2:20260409T173828Z:4962cd98-7197-4826-a4a3-9af365145fa3 X-Msedge-Ref: - - 'Ref A: 8E1D854D828B47A9A0089CDF45AD387B Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:55:33Z' + - 'Ref A: E570FB7E67EE486EA7C485700E7059D0 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:38:28Z' status: 200 OK code: 200 - duration: 562.236167ms - - id: 52 + duration: 64.454041ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3596,10 +3931,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3607,18 +3942,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2747 + content_length: 2745 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-dce66f2","azd-layer-name":"","azd-provision-param-hash":"e0753fb124e0811faaaae0ca7b09f05041c52d4c9b7fcc670484b54d2ac41518"},"properties":{"templateHash":"15782242401159728732","parameters":{"environmentName":{"type":"String","value":"azdtest-dce66f2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-03T01:53:41Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:54:13.1024465Z","duration":"PT31.1762372S","correlationId":"c04eeb3aae64b9582f5882e6cd24daa2","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-dce66f2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stqkmdsjcr7kx7m"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dce66f2/providers/Microsoft.Storage/storageAccounts/stqkmdsjcr7kx7m"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d7f3516","azd-layer-name":"","azd-provision-param-hash":"d965096b5a2205f3c41c9af8184c507340547db22c4a12560b723511d771a960"},"properties":{"templateHash":"4488259817381607990","parameters":{"environmentName":{"type":"String","value":"azdtest-d7f3516"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T18:36:29Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"},"arrayValue":{"type":"Array","value":[]},"objectValue":{"type":"Object","value":{}},"nullableParam":{"type":"String"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:36:55.6984408Z","duration":"PT25.760249S","correlationId":"386827073037b3e0edf4256261a54472","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d7f3516"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sthgngsljiw7i2k"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7f3516/providers/Microsoft.Storage/storageAccounts/sthgngsljiw7i2k"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2747" + - "2745" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:55:33 GMT + - Thu, 09 Apr 2026 17:38:28 GMT Expires: - "-1" Pragma: @@ -3630,21 +3965,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - dae977f6-7241-47d1-b3ad-7b5c3d0dda17 + - fa7f455d-325d-4239-8198-0df9e4119eeb X-Ms-Routing-Request-Id: - - WESTUS:20260203T005534Z:dae977f6-7241-47d1-b3ad-7b5c3d0dda17 + - EASTUS:20260409T173829Z:fa7f455d-325d-4239-8198-0df9e4119eeb X-Msedge-Ref: - - 'Ref A: 331125972A704929B0BCAC9D3D7E1C6C Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:55:34Z' + - 'Ref A: 4E5A50947A3547D0A6E595665A92F2D6 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:38:28Z' status: 200 OK code: 200 - duration: 452.722917ms - - id: 53 + duration: 88.368667ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3655,7 +3990,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-dce66f2"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7f3516"}}' form: {} headers: Accept: @@ -3669,10 +4004,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -3680,20 +4015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 569 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-dce66f2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-03T00:55:35.3189944Z","duration":"PT0.0002927S","correlationId":"4d6487a56fa7ae9ed0ce8a62b8d4607a","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7f3516"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T17:38:29.3365373Z","duration":"PT0.000937S","correlationId":"7e84f17109181b6692f597b17e0b8fc0","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315267501450841?api-version=2021-04-01&t=639056769381940000&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=kcF1xi-hFzr6cr35t8Rm0zm8sqSE3dqw85GWSpvlHQX4s0mEsiV5vQ0X7zPLNKAs-oYbrf3c5r8z-tH2KYTGhmTM4nXGCUgQ83dvRYlDyhsFjgpwslAla7RpKCQ-062BjMhND3EtRBpwZ-a_B3u9OGyaIIfn5_ashfE-VYds1Sd2hHeAamXIOmpYQ1S9OmfEDD8KIW8M1SWentff-0MPNBV5XZ6xVnGeqJu5meAJyox7vKDTPJL1uYKTANbELAaAsTnVOvvIhFswdWWyyPzwLeTyXzwl-ZxCBKMJWIw3HrobchWhExIOAUPIlM5UDp9cR4tSD52dvghyu-Kc8XnB5A&h=Jl5Lae5P3A_eE1khPRNoKs9FSWDRjPiwKqlLKTHYxfY + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258505761310385?api-version=2021-04-01&t=639113531099146563&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=QadjFOTXMRzkghkdxKake3BZL_z0ZbOOueu-3BbRr3B4cC86xqEM0h_1N5x_lQUVhB8yLNjiMb4cLEArWRXAFn4uyaBRoEuWCgUPAuXiDqRMUeoG19d3Qd2bVvUSD8qhizwx_78nmZT1TPsUBCJKpG-4ACrEXoPEJmOSEfwthasXtd9TNTAFOX6wYdNmtRqqM3EWW-RIzR6m4Hp35Q5d3Q7I4n8CPTLFfXa-Ev0dk2bvzs5XA4QwZlgg3cqA2oEnaNlkZFXFB9_Y4IXw6MdBNkDYr0XSS_SzYW-6YPga183pBnRi-wQYRUDYwalS2LD-ReYhLTYnyYc3bjK1N_ZPTQ&h=MrU94dCf5mg0n1e53fkW4sP-628Kx7oZDp10_bRJldY Cache-Control: - no-cache Content-Length: - - "570" + - "569" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:55:37 GMT + - Thu, 09 Apr 2026 17:38:29 GMT Expires: - "-1" Pragma: @@ -3705,23 +4040,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 99c9e0b7-67e3-4894-92f2-1ba0d7bccae3 + - 50f9fef0-d93e-442b-b16f-1927105a443f X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005538Z:99c9e0b7-67e3-4894-92f2-1ba0d7bccae3 + - EASTUS:20260409T173829Z:50f9fef0-d93e-442b-b16f-1927105a443f X-Msedge-Ref: - - 'Ref A: B85B91D9499F42F9A296441FF9011F8D Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:55:34Z' + - 'Ref A: 959CDF3D89814DB3AD6455064A5AE781 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:38:29Z' status: 200 OK code: 200 - duration: 3.455733583s - - id: 54 + duration: 894.671292ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3740,10 +4075,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792/operationStatuses/08584315267501450841?api-version=2021-04-01&t=639056769381940000&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=kcF1xi-hFzr6cr35t8Rm0zm8sqSE3dqw85GWSpvlHQX4s0mEsiV5vQ0X7zPLNKAs-oYbrf3c5r8z-tH2KYTGhmTM4nXGCUgQ83dvRYlDyhsFjgpwslAla7RpKCQ-062BjMhND3EtRBpwZ-a_B3u9OGyaIIfn5_ashfE-VYds1Sd2hHeAamXIOmpYQ1S9OmfEDD8KIW8M1SWentff-0MPNBV5XZ6xVnGeqJu5meAJyox7vKDTPJL1uYKTANbELAaAsTnVOvvIhFswdWWyyPzwLeTyXzwl-ZxCBKMJWIw3HrobchWhExIOAUPIlM5UDp9cR4tSD52dvghyu-Kc8XnB5A&h=Jl5Lae5P3A_eE1khPRNoKs9FSWDRjPiwKqlLKTHYxfY + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989/operationStatuses/08584258505761310385?api-version=2021-04-01&t=639113531099146563&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=QadjFOTXMRzkghkdxKake3BZL_z0ZbOOueu-3BbRr3B4cC86xqEM0h_1N5x_lQUVhB8yLNjiMb4cLEArWRXAFn4uyaBRoEuWCgUPAuXiDqRMUeoG19d3Qd2bVvUSD8qhizwx_78nmZT1TPsUBCJKpG-4ACrEXoPEJmOSEfwthasXtd9TNTAFOX6wYdNmtRqqM3EWW-RIzR6m4Hp35Q5d3Q7I4n8CPTLFfXa-Ev0dk2bvzs5XA4QwZlgg3cqA2oEnaNlkZFXFB9_Y4IXw6MdBNkDYr0XSS_SzYW-6YPga183pBnRi-wQYRUDYwalS2LD-ReYhLTYnyYc3bjK1N_ZPTQ&h=MrU94dCf5mg0n1e53fkW4sP-628Kx7oZDp10_bRJldY method: GET response: proto: HTTP/2.0 @@ -3762,7 +4097,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:56:08 GMT + - Thu, 09 Apr 2026 17:38:59 GMT Expires: - "-1" Pragma: @@ -3774,21 +4109,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 66c5f12d-54b6-4117-80ca-6d9fa27398c8 + - d32d366e-ee10-4860-9ff6-3d839b5b12d0 X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005609Z:66c5f12d-54b6-4117-80ca-6d9fa27398c8 + - EASTUS:20260409T173900Z:d32d366e-ee10-4860-9ff6-3d839b5b12d0 X-Msedge-Ref: - - 'Ref A: 7B51AA93531E4906854CDA0C2FBA298F Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:56:08Z' + - 'Ref A: F67DF248A1E14AA48396916849F634AD Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:39:00Z' status: 200 OK code: 200 - duration: 440.069667ms - - id: 55 + duration: 159.658167ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3807,10 +4142,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792?api-version=2021-04-01 + - 7e84f17109181b6692f597b17e0b8fc0 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3820,7 +4155,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-dce66f2-1770079792","name":"azdtest-dce66f2-1770079792","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-dce66f2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-03T00:55:38.5810828Z","duration":"PT3.2620884S","correlationId":"4d6487a56fa7ae9ed0ce8a62b8d4607a","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d7f3516-1775755989","name":"azdtest-d7f3516-1775755989","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d7f3516"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T17:38:30.2561327Z","duration":"PT0.9195954S","correlationId":"7e84f17109181b6692f597b17e0b8fc0","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -3829,7 +4164,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 00:56:08 GMT + - Thu, 09 Apr 2026 17:39:00 GMT Expires: - "-1" Pragma: @@ -3841,78 +4176,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d6487a56fa7ae9ed0ce8a62b8d4607a + - 7e84f17109181b6692f597b17e0b8fc0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f661c78a-083a-4565-b74e-b1c269c2ae47 + - 90d2da0f-a366-4cc2-8427-c4504e843ecc X-Ms-Routing-Request-Id: - - WESTUS2:20260203T005609Z:f661c78a-083a-4565-b74e-b1c269c2ae47 + - EASTUS:20260409T173900Z:90d2da0f-a366-4cc2-8427-c4504e843ecc X-Msedge-Ref: - - 'Ref A: 6C034DD2742A45ED8EBFBE44383CC7CA Ref B: CO6AA3150218025 Ref C: 2026-02-03T00:56:09Z' + - 'Ref A: 38ABDA0E6053405DA4344FC2EBD64391 Ref B: BN1AA2051015051 Ref C: 2026-04-09T17:39:00Z' status: 200 OK code: 200 - duration: 379.823208ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: aka.ms - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) - url: https://aka.ms:443/azd/extensions/registry/dev - 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: - - Tue, 03 Feb 2026 00:56:10 GMT - Expires: - - Tue, 03 Feb 2026 00:56:10 GMT - Location: - - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 384.61825ms - - id: 57 + duration: 197.600917ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3930,11 +4208,9 @@ interactions: - gzip Authorization: - SANITIZED - Referer: - - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.1; darwin) - url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -3942,899 +4218,9146 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 41722 + content_length: 138770 uncompressed: false body: |- { "extensions": [ { - "id": "microsoft.azd.demo", - "namespace": "demo", - "displayName": "Demo Extension", - "description": "This extension provides examples of the AZD extension framework.", + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", "versions": [ { + "version": "0.1.2", "capabilities": [ - "custom-commands", - "lifecycle-events" + "custom-commands" ], - "version": "0.1.0-beta.1", - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" }, "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" + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" }, - "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" + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" } - } + }, + "entryPoint": "app" }, { + "version": "0.3.1", "capabilities": [ "custom-commands", - "lifecycle-events" + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" }, - "entryPoint": "microsoft-azd-demo-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" }, - "entryPoint": "microsoft-azd-demo-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" }, - "entryPoint": "microsoft-azd-demo-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" }, - "entryPoint": "microsoft-azd-demo-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" }, - "entryPoint": "microsoft-azd-demo-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" }, - "entryPoint": "microsoft-azd-demo-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" } } - } - ] - }, - { - "id": "microsoft.azd.ai.builder", - "namespace": "ai", - "displayName": "AZD AI Builder", - "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", - "versions": [ + }, { + "version": "0.3.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.1.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.3.3", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd ai builder \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "start", - "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", - "usage": "azd ai builder start" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" }, - "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" }, - "entryPoint": "microsoft-azd-ai-builder-linux-amd64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" }, - "entryPoint": "microsoft-azd-ai-builder-linux-arm64", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" }, - "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" }, - "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", - "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-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.3.7", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.2.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.4.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.3.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.4.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" } } }, { + "version": "0.5.1", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "version": "0.4.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:39:00 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 17:44:00 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - c7cf3bb677ba951af6495e9969321df8ae74acd4 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760024-MIA + X-Timer: + - S1775756341.798136,VS0,VE165 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 280.002834ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 17:39:01 GMT + Expires: + - Thu, 09 Apr 2026 17:39:01 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: 235.343542ms + - id: 63 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:39:01 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 17:44:01 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 1e407e3079f061dd7e6d2b182d55f15aa66a175e + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760024-MIA + X-Timer: + - S1775756341.254711,VS0,VE81 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 105.504792ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 17:39:01 GMT + Expires: + - Thu, 09 Apr 2026 17:39:01 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 137.741792ms + - id: 65 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 17:39:01 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 17:44:01 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - d88ba916e7165bb753f5f1ea681687aa88d7487a + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760024-MIA + X-Timer: + - S1775756342.534876,VS0,VE91 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 109.1595ms + - id: 66 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" }, - "entryPoint": "microsoft-azd-extensions-darwin-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" }, - "entryPoint": "microsoft-azd-extensions-darwin-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" }, - "entryPoint": "microsoft-azd-extensions-linux-amd64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" }, - "entryPoint": "microsoft-azd-extensions-linux-arm64", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" }, - "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" }, - "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", - "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.1.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.4.2", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.0.5", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.5.0", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [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": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "publish", - "description": "Publish the AZD extension project to an extension source.", - "usage": "azd x publish" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " }, { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" } } }, { + "version": "0.0.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events" ], - "version": "0.5.1", - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd doctor [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AZD extension project.", - "usage": "azd x init" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "build", - "description": "Build the AZD extension project.", - "usage": "azd x build" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " }, { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" }, - { - "name": "publish", - "description": "Publish the AZD extension project to an extension source.", - "usage": "azd x publish" + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" } } } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" ] } ] @@ -4847,7 +13370,7 @@ interactions: Cache-Control: - max-age=300 Content-Length: - - "41722" + - "16828" Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: @@ -4855,13 +13378,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Tue, 03 Feb 2026 00:56:10 GMT + - Thu, 09 Apr 2026 17:39:01 GMT Etag: - - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - Tue, 03 Feb 2026 01:01:10 GMT + - Thu, 09 Apr 2026 17:44:01 GMT Source-Age: - - "59" + - "0" Strict-Transport-Security: - max-age=31536000 Vary: @@ -4871,25 +13394,25 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - "1" + - "0" X-Content-Type-Options: - nosniff X-Fastly-Request-Id: - - 026f10163787d3b7f3e70fc8c0cf8ad50b508c3c + - e25697d067863c97fced8e1daf1a16bf08a1025c X-Frame-Options: - deny X-Github-Request-Id: - - EC20:31946:205652:28E7AC:6981476E + - E072:2F6A22:7FEE2:965AC:69D7C890 X-Served-By: - - cache-bfi-krnt7300107-BFI + - cache-mia-kmia1760024-MIA X-Timer: - - S1770080170.412435,VS0,VE1 + - S1775756342.654975,VS0,VE151 X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 - duration: 104.081042ms + duration: 167.548375ms --- -env_name: azdtest-dce66f2 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1770079792" +env_name: azdtest-d7f3516 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775755989" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.dotnet.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.dotnet.yaml index 08ae73b20b8..0dbfb1994a5 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.dotnet.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.dotnet.yaml @@ -4,16 +4,17 @@ interactions: - id: 0 args: - publish - - C:\Users\hemarina\AppData\Local\Temp\Test_CLI_Up_Down_ContainerApp2933748517\001\src\dotnet + - /private/var/folders/4_/b31s94vn0wn0y0bhzmd0f9_h0000gn/T/Test_CLI_Up_Down_ContainerApp2544203746/001/src/dotnet - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=containerapp/web-azdtest-w29f862 - - -p:ContainerImageTag=azd-deploy-1769126940 - - -p:ContainerRegistry=critjx2xx5j5ka6.azurecr.io + - -p:ContainerRepository=containerapp/web-azdtest-d209f3e + - -p:ContainerImageTag=azd-deploy-1775758879 + - -p:ContainerRegistry=crpogq2w7bplv2u.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 - stdout: "{\"config\":{\"ExposedPorts\":{\"8080/tcp\":{}},\"Labels\":{\"org.opencontainers.image.created\":\"2026-01-23T00:14:40.5743393Z\",\"org.opencontainers.artifact.created\":\"2026-01-23T00:14:40.5743393Z\",\"org.opencontainers.image.authors\":\"webapp\",\"org.opencontainers.image.version\":\"1.0.0\",\"org.opencontainers.image.base.name\":\"mcr.microsoft.com/dotnet/aspnet:8.0\",\"net.dot.runtime.majorminor\":\"8.0\",\"net.dot.sdk.version\":\"10.0.102\",\"org.opencontainers.image.base.digest\":\"sha256:21f890828684988e4fcebdcaca2cf0f685592ed555e7615b16274b83ce738a42\"},\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"APP_UID=1654\",\"ASPNETCORE_HTTP_PORTS=8080\",\"DOTNET_RUNNING_IN_CONTAINER=true\",\"DOTNET_VERSION=8.0.23\",\"ASPNET_VERSION=8.0.23\"],\"WorkingDir\":\"/app/\",\"Entrypoint\":[\"dotnet\",\"/app/webapp.dll\"],\"User\":\"1654\"},\"created\":\"2026-01-23T00:14:42.8756046Z\",\"rootfs\":{\"type\":\"layers\",\"diff_ids\":[\"sha256:e0e6002570470d87b99366522e2deadfd07fd6abb0c481198c1e336f9117e5a6\",\"sha256:1a3f5e02f6f1c808deaf0c490d786191a718f4ca4c0a26bd95e68fa3dbc8d026\",\"sha256:73a0e37a8718c8390841ac9ad0f28b2e4cb0b3b58ea78a8e487a017b3184b10e\",\"sha256:451e0ae03a8fdebb6f06e9b947ba6d38004fef22d6c07da53b59df08eef3eb0c\",\"sha256:036dcc13d63974ea6a5cb8ca4da8e6e25ab0c471414788b51930576d53bd4a68\",\"sha256:94a122a9cda8bdd05931e81238ff9d27f054462166a9d78dc5eb5f8c06ad59c4\",\"sha256:7009dcc25ebe8ca6ecf4f4b86b113eb63fcc7c47888724cbe23408b78e192981\"]},\"architecture\":\"amd64\",\"os\":\"linux\",\"history\":[{\"comment\":\"debuerreotype 0.17\",\"created\":\"2026-01-12T00:00:00.0000000Z\",\"created_by\":\"# debian.sh --arch \\u0027amd64\\u0027 out/ \\u0027bookworm\\u0027 \\u0027@1768176000\\u0027\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:02.3131217Z\",\"created_by\":\"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:02.3131217Z\",\"created_by\":\"RUN /bin/sh -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\\u002B\\u002B6 tzdata zlib1g \\u0026\\u0026 rm -rf /var/lib/apt/lists/* # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:04.8764528Z\",\"created_by\":\"RUN /bin/sh -c groupadd --gid=$APP_UID app \\u0026\\u0026 useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:12.2285374Z\",\"created_by\":\"ENV DOTNET_VERSION=8.0.23\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:12.2285374Z\",\"created_by\":\"COPY /dotnet /usr/share/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:13.2783027Z\",\"created_by\":\"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:19.2114961Z\",\"created_by\":\"ENV ASPNET_VERSION=8.0.23\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:19.2114961Z\",\"created_by\":\"COPY /dotnet /usr/share/dotnet # buildkit\"},{\"author\":\".NET SDK\",\"created\":\"2026-01-23T00:14:42.8755879Z\",\"created_by\":\".NET SDK Container Tooling, version 10.0.102-servicing.25612.105\\u002B44525024595742ebe09023abe709df51de65009b\"}]}\r\n" + stdout: | + {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2026-04-09T18:23:30.2609260Z","org.opencontainers.artifact.created":"2026-04-09T18:23:30.2609260Z","org.opencontainers.image.authors":"webapp","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"10.0.100","org.opencontainers.image.base.digest":"sha256:f96b3e51900016669cc947ccc3d2b039f215177ba898484d0ddf58fa3ff24502"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.25","ASPNET_VERSION=8.0.25"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/webapp.dll"],"User":"1654"},"created":"2026-04-09T18:23:32.8067430Z","rootfs":{"type":"layers","diff_ids":["sha256:335fc45cf5e8eaa6d5b19a54b16db34311ce0d7a068eb2a9222eab4ddd3c216d","sha256:30da658ae7b20de905ba4a453303e70f194c701b1331b47243f93e6e12e4e89a","sha256:b45a6cab1cc45a5d56a5cb8b9bca8ea72136b0b38e16c446f5014319cb55d586","sha256:3daec66b7d6c23437299e2ec6776030ad3b9d6e4dcf8a8fa9cac3965d73f56eb","sha256:787bb4e362176e908640408f44ad9cecab4af579f9ba5de04fb0fa105c0e1eef","sha256:9c8ff24a0a0de3ef951df3c4cbe1de7db5f063012a70d8d01da049a77eaa3fe3","sha256:c921e49e9c15fbb4a3b459e555cc00246a7f961da298511d75e75912612b2274"]},"architecture":"amd64","os":"linux","history":[{"comment":"debuerreotype 0.17","created":"2026-04-06T00:00:00.0000000Z","created_by":"# debian.sh --arch \u0027amd64\u0027 out/ \u0027bookworm\u0027 \u0027@1775433600\u0027"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:09.7393608Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:09.7393608Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:11.5276800Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:18.3527928Z","created_by":"ENV DOTNET_VERSION=8.0.25","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:18.3527928Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:19.5843303Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:26.0849582Z","created_by":"ENV ASPNET_VERSION=8.0.25","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:26.0849582Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"author":".NET SDK","created":"2026-04-09T18:23:32.8067370Z","created_by":".NET SDK Container Tooling, version 10.0.100-rtm.25523.111\u002Bb0f34d51fccc69fd334253924abd8d6853fad7aa"}]} stderr: "" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.yaml index d5ad3a3abe7..34e89f68635 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:35 GMT + - Thu, 09 Apr 2026 18:21:29 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6a55fb5e-8bff-4845-b1da-b3fadbc6b344 + - 4913b7bb-8e35-439e-be8f-7ac01ea7eeb7 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T000936Z:6a55fb5e-8bff-4845-b1da-b3fadbc6b344 + - EASTUS2:20260409T182129Z:4913b7bb-8e35-439e-be8f-7ac01ea7eeb7 X-Msedge-Ref: - - 'Ref A: 80EAC849580E4D50911E9DFD292B1CC5 Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:34Z' + - 'Ref A: F2AAAC643E6A477E99565A76E85CF2D1 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:28Z' status: 200 OK code: 200 - duration: 1.9663692s + duration: 1.222635875s - id: 1 request: proto: HTTP/1.1 @@ -91,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w29f862%27&api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d209f3e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:35 GMT + - Thu, 09 Apr 2026 18:21:29 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9468799a-f2d1-4f2a-bf98-88450e948422 + - 54e00422-dae0-4f2c-9430-be2ea95b2687 X-Ms-Routing-Request-Id: - - WESTUS:20260123T000936Z:9468799a-f2d1-4f2a-bf98-88450e948422 + - EASTUS2:20260409T182130Z:54e00422-dae0-4f2c-9430-be2ea95b2687 X-Msedge-Ref: - - 'Ref A: 703E8768556E4CD7A6611A289ACBABC4 Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:36Z' + - 'Ref A: 708DA4D373F14C559769E7CB3C5582A7 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:30Z' status: 200 OK code: 200 - duration: 139.4078ms + duration: 150.476042ms - id: 2 request: proto: HTTP/1.1 @@ -160,10 +160,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -171,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24870 + content_length: 13479 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antischfoundrymachine","name":"antischfoundrymachine","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"antischfoundrymachine","DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg48943Second","name":"javacsmrg48943Second","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/06/2026 08:22:50"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/lfraleigh-foundry","name":"lfraleigh-foundry","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-lorifraleigh-agent","name":"rg-lorifraleigh-agent","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-dealmahastorage","name":"rg-dealmahastorage","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"Owners":"dealmaha","ServiceDirectory":"storage","DeleteAfter":"2025-09-03T18:34:00.1287154Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2025-03-05T22:20:18.0264905Z","ServiceDirectory":"messaging/azeventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\"","owners":"jsquire, juanospina"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest","name":"v-tongMonthlyReleaseTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"12/15/2026 04:13:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcp-swe-demo-rg","name":"mcp-swe-demo-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-mcp-demo","name":"rohitganguly-mcp-demo","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chatbotrg","name":"chatbotrg","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec_helper","name":"typespec_helper","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DoNotDelete":"yes","Owners":"jiaqzhang,Renhe.Li,Yu.Chun","Purpose":"Azure SDK QA Bot Dev environment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-prod-eastasia","name":"azure-sdk-qa-bot-prod-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-wanl-eastasia","name":"azure-sdk-qa-bot-wanl-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-devinternal-eastasia","name":"azure-sdk-qa-bot-devinternal-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-dev-eastasia","name":"azure-sdk-qa-bot-dev-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jialinhuang-test","name":"rg-jialinhuang-test","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"12/19/2025 16:30:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test5","name":"rg-hemarina-test5","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"hemarina-test5","DeleteAfter":"02/01/2026 04:20:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-2-eus2-fgdps","name":"rg-jinlong-2-eus2-fgdps","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-2","azd-template":"ronaldbosma/azure-integration-services-quickstart","DeleteAfter":"03/01/2025 12:17:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/prmarott-apiview","name":"prmarott-apiview","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-aihackery","name":"rg-aihackery","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"Because It''s Awesome"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/trpresco-archagent","name":"trpresco-archagent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm6e012f0814954aa","name":"cm6e012f0814954aa","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-ripark","name":"rg-ripark","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/judytest","name":"judytest","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/16/2025 07:41:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzureBackupRG_eastus2_1","name":"AzureBackupRG_eastus2_1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.RecoveryServices/","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-renhel-8669","name":"rg-renhel-8669","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"owner":"renhe","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryostorage","name":"rg-larryostorage","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-10-29T21:50:46.7625939Z","ServiceDirectory":"storage","Owners":"larryo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcp-perf","name":"mcp-perf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"11/22/2026 08:17:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/conniey-rg","name":"conniey-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/24/2026 12:13:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryo-community-bbs","name":"rg-larryo-community-bbs","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"larryo-community-bbs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu-foundry","name":"wenjiefu-foundry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-lfraleigh","name":"rg-lfraleigh","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"01/31/2026 20:35:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-triageagentsquad","name":"rg-triageagentsquad","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc82824eb","name":"rgloc82824eb","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-heathsstorage","name":"rg-heathsstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","DeleteAfter":"2025-12-17T01:29:17.9284551Z","Owners":"heaths"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-25T18:50:08.2731360Z","Owners":"larryo","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-searchtest3322","name":"rg-searchtest3322","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"search","Owners":"minhanhphan","DeleteAfter":"02/01/2026 00:16:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-rg","name":"llaw-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/22/2026 20:35:12"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/UxTestRG","name":"UxTestRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/kcwalina","name":"kcwalina","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2026 00:19:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/Default-ApplicationInsights-EastUS","name":"Default-ApplicationInsights-EastUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shayne","name":"shayne","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/sociallinker","name":"sociallinker","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/first-timers-only","name":"first-timers-only","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shboyer-ghost","name":"shboyer-ghost","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates","name":"azureadvocates","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","name":"ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/microsoft.insights/components/social-linker-insights","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceai","name":"rg-unconferenceai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"unconferenceai"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdevtools-pm","name":"azdevtools-pm","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","name":"pmdataagent-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-func-flex-demo","name":"rg-func-flex-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"func-flex-demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/devtopromoter","name":"devtopromoter","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/nerddinner-mvc4","name":"nerddinner-mvc4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS2","name":"DefaultResourceGroup-EUS2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","name":"rg-shboyer-4385","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-octopets-2025","name":"rg-octopets-2025","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"aspire":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py","name":"rg-scope-func-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","name":"ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py/providers/microsoft.insights/components/appi-vc3jdcjrljj4e","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recorded-swa-session","name":"rg-recorded-swa-session","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dash","name":"rg-ontology-dash","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dash"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dashboard","name":"rg-ontology-dashboard","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dashboard"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-fortune-peter","name":"rg-fortune-peter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fortune-peter"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recipe-remix-dev","name":"rg-recipe-remix-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"recipe-remix-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-bug-detective-dev","name":"rg-bug-detective-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"bug-detective-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","name":"rg-shboyer-af-ts","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-echo-ts-fresh","name":"rg-echo-ts-fresh","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"echo-ts-fresh"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ts-mf-testing","name":"rg-ts-mf-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ts-mf-testing"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/waza-docs-rg","name":"waza-docs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-collab-plan","name":"rg-collab-plan","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-task-tracker-demo","name":"rg-task-tracker-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-demo-deploy-k8m3","name":"rg-demo-deploy-k8m3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"demo-deploy-k8m3"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-forge-plugin-dev","name":"rg-forge-plugin-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"forge-plugin-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-test-agent","name":"rg-test-agent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev","name":"rg-waza-platform-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"waza-platform-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20","name":"rg-azdtest-d7ffc20","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2026-04-09T19:14:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/swa-tutorial","name":"swa-tutorial","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceapp","name":"rg-unconferenceapp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"unconferenceapp"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","name":"rg-copilot-demo","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-calc","name":"rg-calc","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"calc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-email-router-agent","name":"rg-email-router-agent","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"email-router-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-david-test","name":"rg-david-test","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"david-test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-claw","name":"rg-foundry-claw","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-claw"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus","name":"rg-foundry-helper-ncus","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-helper-ncus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-USW3","name":"DefaultResourceGroup-USW3","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "24870" + - "13479" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:35 GMT + - Thu, 09 Apr 2026 18:21:30 GMT Expires: - "-1" Pragma: @@ -194,20 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 024099ba-1ad7-43d0-ac78-28631745909c + - 76951e16-dbd0-4dc8-b1d0-a7241ec2b6c1 X-Ms-Routing-Request-Id: - - WESTUS:20260123T000936Z:024099ba-1ad7-43d0-ac78-28631745909c + - EASTUS2:20260409T182130Z:76951e16-dbd0-4dc8-b1d0-a7241ec2b6c1 X-Msedge-Ref: - - 'Ref A: D167E5D72F1B4FA5A1487E129812B9A2 Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:36Z' + - 'Ref A: 087DB09340A046B582D954E35B115B16 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:30Z' status: 200 OK code: 200 - duration: 75.3212ms + duration: 459.644625ms - id: 3 request: proto: HTTP/1.1 @@ -229,10 +229,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -240,18 +240,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1959253 + content_length: 963587 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=RY9db4IwGIV%2fC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2bO5OOdGdsH3rT9t%2bzZ4DK7xPyS%2fkQ9Ro63ZJH1z7t%2b33307EcvmQnJCo9cIcHOW101C4j%2fChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2fDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2b5eAF0GRZKQMSaimLaT3J%2b6LiagDM5nAtAUq%2f%2f08e%2fJ2GWtLM4fdhx%2fAQ%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1c%2fBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2bf8P%2fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2fSNTapkg47PRx%2bhOZiyhigjbjYGit%2bQ06nwwdJSWebT0%2beEUljsv%2b1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2fttFpWCFVKxyL3wkLMaUiZ08u3xX5%2fLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2fO6bpBw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1959253" + - "963587" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:42 GMT + - Thu, 09 Apr 2026 18:21:33 GMT Expires: - "-1" Pragma: @@ -263,20 +263,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b563b47e-273c-40da-922f-1dc0f9f621fa + - a338f9d5-ab49-44dd-afff-23eaeebf7ac3 X-Ms-Routing-Request-Id: - - WESTUS:20260123T000942Z:b563b47e-273c-40da-922f-1dc0f9f621fa + - EASTUS:20260409T182134Z:a338f9d5-ab49-44dd-afff-23eaeebf7ac3 X-Msedge-Ref: - - 'Ref A: 4403A877532A4B64977EEB0F48A2C29C Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:36Z' + - 'Ref A: 22EFD849AAAA4D4E970E241A7C0C1A0C Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:30Z' status: 200 OK code: 200 - duration: 6.3826566s + duration: 3.347598708s - id: 4 request: proto: HTTP/1.1 @@ -296,10 +296,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=RY9db4IwGIV%2FC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2BO5OOdGdsH3rT9t%2BzZ4DK7xPyS%2FkQ9Ro63ZJH1z7t%2B33307EcvmQnJCo9cIcHOW101C4j%2FChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2FDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2B5eAF0GRZKQMSaimLaT3J%2B6LiagDM5nAtAUq%2F%2F08e%2FJ2GWtLM4fdhx%2FAQ%3D%3D&api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1c%2FBbsIwDAbgZ2nORUqAw9RbRzypjLgksTX1iKaOFVAqbUVtivruW4d4iJ1s%2Bf8P%2Fm7ivQ1dE66HrmkDtec6fIvsJiD3xH45r6Eeuv3hq2vmxmsdRSZU8pRYgmhktRDpX8O1%2FSNTapkg47PRx%2BhOZiyhigjbjYGit%2BQ06nwwdJSWebT0%2BeEUljsv%2B1LzGrWVpTbSkBmROJqTUSYqIolbywMxvHg%2FttFpWCFVKxyL3wkLMaUiZ08u3xX5%2FLzIwvVyScUbeAJ25R4elzvtX8lmxAZw1rG%2FO6bpBw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -307,18 +307,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 336304 + content_length: 871173 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2bZbwa%2b%2f0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2b7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2fUNTIY%2fG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2biO7xFVSSP2v%2bsrgYS5oidP0Cw%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "336304" + - "871173" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:45 GMT + - Thu, 09 Apr 2026 18:21:36 GMT Expires: - "-1" Pragma: @@ -330,20 +330,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fd454adc-3bcd-4668-aee3-0e42145133c4 + - 04ece11b-469b-4953-9664-bd3fd957a22c X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260123T000945Z:fd454adc-3bcd-4668-aee3-0e42145133c4 + - EASTUS2:20260409T182137Z:04ece11b-469b-4953-9664-bd3fd957a22c X-Msedge-Ref: - - 'Ref A: 78CD740EDFF24C86AA9907E8BA6887DE Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:43Z' + - 'Ref A: 4881AF51624941259333ABCFC4980DDF Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:34Z' status: 200 OK code: 200 - duration: 2.572504s + duration: 2.58145775s - id: 5 request: proto: HTTP/1.1 @@ -363,10 +363,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2BZbwa%2B%2F0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2B7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2FUNTIY%2FG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2BiO7xFVSSP2v%2BsrgYS5oidP0Cw%3D%3D&api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -374,18 +374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14077 + content_length: 515084 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "14077" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:45 GMT + - Thu, 09 Apr 2026 18:21:38 GMT Expires: - "-1" Pragma: @@ -397,68 +397,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 124e79c4-a0fc-4917-8642-9fbdd772b858 + - c96c591a-e2c7-4110-a8d1-dbc6a1d5d71f X-Ms-Routing-Request-Id: - - WESTUS2:20260123T000946Z:124e79c4-a0fc-4917-8642-9fbdd772b858 + - EASTUS:20260409T182138Z:c96c591a-e2c7-4110-a8d1-dbc6a1d5d71f X-Msedge-Ref: - - 'Ref A: 8B38E47B2F71498090EE25877DAAC6E6 Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:45Z' + - 'Ref A: 7874C0EEC09245BE92A4937B89976BDE Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:37Z' status: 200 OK code: 200 - duration: 579.4969ms + duration: 1.464217208s - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 7845 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w29f862","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":"17519074622280447864"}},"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":"7043133148496298500"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "7845" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940/validate?api-version=2021-04-01 - method: POST + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2568 + content_length: 415580 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:46Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:09:46.675095Z","duration":"PT0S","correlationId":"cef3eca015989286764f3d735d335276","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w29f862"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6/providers/Microsoft.Authorization/roleAssignments/0132a90f-753d-51a5-93e5-20867e9cc237"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2568" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:47 GMT + - Thu, 09 Apr 2026 18:21:39 GMT Expires: - "-1" Pragma: @@ -470,70 +464,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - b9ddf6d835f27ca94999eee72f0a6fbc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - fd0e323d-d718-442d-991c-029763aa5581 + - 90806925-52f0-4bd3-95be-fc6d0e45a20c X-Ms-Routing-Request-Id: - - WESTUS2:20260123T000947Z:fd0e323d-d718-442d-991c-029763aa5581 + - EASTUS:20260409T182139Z:90806925-52f0-4bd3-95be-fc6d0e45a20c X-Msedge-Ref: - - 'Ref A: 2EA42002412049DEBCA7A4F0CFFD7F12 Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:46Z' + - 'Ref A: 4F8ADE5034B441DDA7852444B36DF193 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:38Z' status: 200 OK code: 200 - duration: 1.5950445s + duration: 919.598083ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 7845 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w29f862","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":"17519074622280447864"}},"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":"7043133148496298500"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "7845" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940?api-version=2021-04-01 - method: PUT + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1411 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:48Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-23T00:09:48.2638714Z","duration":"PT0.000387S","correlationId":"cef3eca015989286764f3d735d335276","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w29f862"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940/operationStatuses/08584324798972010243?api-version=2021-04-01&t=639047237905921515&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=AbujLnT1kPwSkF1DBA1hXeyPhFkN7fjvUfjNter3GQxlcrx6JsZOghE5RKCTgMGrua5gxU601EBCa9Sik5FPNIm3ldTDoWA3e6ZcqAHrQ3_b-QP27oUUanqQdFpjK6zzPvNo0amzzQEZREGhLtfv45DCzcBEommPTDd62voHl-cnKTlNPANuFydcQwXHaPjdO-aWqD5q1Taar-Vo_CAvjMTNKRKGxFm1yyJgX2zB0U1Zj-Y7fGR0BNexNINEMkrbKVyc9BwnaSSHzItFSe8anKnA7MXycBNJfMPVNgDtifeVHyoUIycMUGKl3XPWYSymT1K_0GMDEHPliHDVVnGTeQ&h=vRqxQsL5nOzHdkbY4JV_6L4ptld-D5SU9WcaIVmHZms Cache-Control: - no-cache Content-Length: - - "1411" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:50 GMT + - Thu, 09 Apr 2026 18:21:39 GMT Expires: - "-1" Pragma: @@ -545,22 +531,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - X-Ms-Deployment-Engine-Version: - - 1.568.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - b9ddf6d835f27ca94999eee72f0a6fbc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 2576d662-2a03-4c7f-9138-157871345e02 + - e7fbd356-513b-4ac5-8e56-418c24297a3e X-Ms-Routing-Request-Id: - - WESTUS2:20260123T000950Z:2576d662-2a03-4c7f-9138-157871345e02 + - EASTUS:20260409T182140Z:e7fbd356-513b-4ac5-8e56-418c24297a3e X-Msedge-Ref: - - 'Ref A: 943039B9CF444388A53DD3DBBB3B5C9D Ref B: MWH011020807029 Ref C: 2026-01-23T00:09:47Z' - status: 201 Created - code: 201 - duration: 2.6374938s + - 'Ref A: 3E3D3F3183E24B87AE1136510C326C0D Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:39Z' + status: 200 OK + code: 200 + duration: 763.816375ms - id: 8 request: proto: HTTP/1.1 @@ -575,15 +559,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940/operationStatuses/08584324798972010243?api-version=2021-04-01&t=639047237905921515&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=AbujLnT1kPwSkF1DBA1hXeyPhFkN7fjvUfjNter3GQxlcrx6JsZOghE5RKCTgMGrua5gxU601EBCa9Sik5FPNIm3ldTDoWA3e6ZcqAHrQ3_b-QP27oUUanqQdFpjK6zzPvNo0amzzQEZREGhLtfv45DCzcBEommPTDd62voHl-cnKTlNPANuFydcQwXHaPjdO-aWqD5q1Taar-Vo_CAvjMTNKRKGxFm1yyJgX2zB0U1Zj-Y7fGR0BNexNINEMkrbKVyc9BwnaSSHzItFSe8anKnA7MXycBNJfMPVNgDtifeVHyoUIycMUGKl3XPWYSymT1K_0GMDEHPliHDVVnGTeQ&h=vRqxQsL5nOzHdkbY4JV_6L4ptld-D5SU9WcaIVmHZms + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=assignedTo('6c37e0ec-712d-4900-a73f-bcfd17630788') method: GET response: proto: HTTP/2.0 @@ -591,18 +577,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 39026 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-02-11T20:25:48.1490444Z","updatedOn":"2025-02-11T20:25:48.1490444Z","createdBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","updatedBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fc14d582-d744-4057-927e-b2ac56269010","type":"Microsoft.Authorization/roleAssignments","name":"fc14d582-d744-4057-927e-b2ac56269010"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-04-29T20:00:09.1204889Z","updatedOn":"2025-04-29T20:00:09.1204889Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fcf6514a-ec92-4579-b376-985ed789af99","type":"Microsoft.Authorization/roleAssignments","name":"fcf6514a-ec92-4579-b376-985ed789af99"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-05-12T20:59:23.1044444Z","updatedOn":"2025-05-12T20:59:23.1044444Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/e1b4ed65-90d5-4575-9fab-a15e8dd8bc67","type":"Microsoft.Authorization/roleAssignments","name":"e1b4ed65-90d5-4575-9fab-a15e8dd8bc67"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","condition":null,"conditionVersion":null,"createdOn":"2025-10-17T23:58:29.8971266Z","updatedOn":"2025-10-17T23:58:29.8971266Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385/providers/Microsoft.Authorization/roleAssignments/29bfa47e-c62a-42f2-b8eb-2bb43b0d0663","type":"Microsoft.Authorization/roleAssignments","name":"29bfa47e-c62a-42f2-b8eb-2bb43b0d0663"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/e79298df-d852-4c6d-84f9-5d13249d1e55","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025","condition":null,"conditionVersion":null,"createdOn":"2025-10-21T16:32:22.3532519Z","updatedOn":"2025-10-21T16:32:22.3532519Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025/providers/Microsoft.Authorization/roleAssignments/f009b370-f0d7-521f-8190-eaaa9291fcec","type":"Microsoft.Authorization/roleAssignments","name":"f009b370-f0d7-521f-8190-eaaa9291fcec"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","condition":null,"conditionVersion":null,"createdOn":"2026-01-16T22:29:38.5035324Z","updatedOn":"2026-01-16T22:29:38.5035324Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg/providers/Microsoft.Authorization/roleAssignments/b9a7d332-61f1-4436-a054-b0a07f45cba3","type":"Microsoft.Authorization/roleAssignments","name":"b9a7d332-61f1-4436-a054-b0a07f45cba3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:17:17.9080051Z","updatedOn":"2026-01-20T23:17:17.9080051Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.Authorization/roleAssignments/a6fcb9dd-5363-4ac1-ad09-52da2646918a","type":"Microsoft.Authorization/roleAssignments","name":"a6fcb9dd-5363-4ac1-ad09-52da2646918a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:22:41.7902463Z","updatedOn":"2026-01-20T23:22:41.7902463Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":"Granted by Microsoft Foundry vscode extension"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr/providers/Microsoft.Authorization/roleAssignments/4f9e750e-a959-4089-99a9-735d93d6ae69","type":"Microsoft.Authorization/roleAssignments","name":"4f9e750e-a959-4089-99a9-735d93d6ae69"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.7220122Z","updatedOn":"2026-01-22T18:42:31.7220913Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/7a576f9c-2657-5b4d-83ba-6d7b8564e2c3","type":"Microsoft.Authorization/roleAssignments","name":"7a576f9c-2657-5b4d-83ba-6d7b8564e2c3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.8056446Z","updatedOn":"2026-01-22T18:42:31.6002825Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9","type":"Microsoft.Authorization/roleAssignments","name":"d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:34:36.2184216Z","updatedOn":"2026-01-22T18:43:19.5451992Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog/providers/Microsoft.Authorization/roleAssignments/bf48cd73-5652-58b3-a891-31cd689a8e83","type":"Microsoft.Authorization/roleAssignments","name":"bf48cd73-5652-58b3-a891-31cd689a8e83"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.6412744Z","updatedOn":"2026-01-23T00:14:55.3413202Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/605b3e65-590a-52b0-9b57-7e2487bd436e","type":"Microsoft.Authorization/roleAssignments","name":"605b3e65-590a-52b0-9b57-7e2487bd436e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.7479302Z","updatedOn":"2026-01-23T00:14:55.3524082Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582","type":"Microsoft.Authorization/roleAssignments","name":"cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:10:15.5696850Z","updatedOn":"2026-01-23T00:15:36.5819142Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq/providers/Microsoft.Authorization/roleAssignments/64540a60-8bcc-52bc-b884-c13515038ba2","type":"Microsoft.Authorization/roleAssignments","name":"64540a60-8bcc-52bc-b884-c13515038ba2"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:55.0166898Z","updatedOn":"2026-01-23T20:54:28.1016796Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/fc8334ec-8bea-5e02-9b4f-43cff42c7bed","type":"Microsoft.Authorization/roleAssignments","name":"fc8334ec-8bea-5e02-9b4f-43cff42c7bed"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:54.9912109Z","updatedOn":"2026-01-23T20:54:28.0149087Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/b3341787-0a98-5dd5-a2e0-1756e8c57bde","type":"Microsoft.Authorization/roleAssignments","name":"b3341787-0a98-5dd5-a2e0-1756e8c57bde"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:55:21.3666642Z","updatedOn":"2026-01-23T20:55:21.3666642Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6/providers/Microsoft.Authorization/roleAssignments/4655cef5-9977-5346-a5d2-c27b33dc17c5","type":"Microsoft.Authorization/roleAssignments","name":"4655cef5-9977-5346-a5d2-c27b33dc17c5"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker","condition":null,"conditionVersion":null,"createdOn":"2026-01-27T00:12:51.6587791Z","updatedOn":"2026-01-27T00:12:51.6587791Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker/providers/Microsoft.Authorization/roleAssignments/13fdc017-b129-4d12-886e-97e8bca4c8e4","type":"Microsoft.Authorization/roleAssignments","name":"13fdc017-b129-4d12-886e-97e8bca4c8e4"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1146962Z","updatedOn":"2026-02-14T18:04:18.3583138Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/81290285-4b15-5d3f-b731-9e4f39716269","type":"Microsoft.Authorization/roleAssignments","name":"81290285-4b15-5d3f-b731-9e4f39716269"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1665151Z","updatedOn":"2026-02-14T18:04:18.4095322Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/94dd26ea-5dd1-5807-9af0-6f3b8810c40b","type":"Microsoft.Authorization/roleAssignments","name":"94dd26ea-5dd1-5807-9af0-6f3b8810c40b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:59:35.4573312Z","updatedOn":"2026-02-14T18:04:59.6101897Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi/providers/Microsoft.Authorization/roleAssignments/8290a893-c6ce-5d7f-8746-5b61055a672d","type":"Microsoft.Authorization/roleAssignments","name":"8290a893-c6ce-5d7f-8746-5b61055a672d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","condition":null,"conditionVersion":null,"createdOn":"2026-02-24T03:36:34.6591990Z","updatedOn":"2026-02-24T03:36:34.6591990Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts/providers/Microsoft.Authorization/roleAssignments/b9d7628f-5576-4018-9b5f-85fc24be672e","type":"Microsoft.Authorization/roleAssignments","name":"b9d7628f-5576-4018-9b5f-85fc24be672e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:31:40.1699479Z","updatedOn":"2026-02-25T01:31:40.1699479Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/b8b1f75a-96ba-5d7d-8205-4f794293e324","type":"Microsoft.Authorization/roleAssignments","name":"b8b1f75a-96ba-5d7d-8205-4f794293e324"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:32:07.3700484Z","updatedOn":"2026-02-25T01:32:07.3700484Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/73d453e9-cd90-55bc-a3f0-078c8f1b8e30","type":"Microsoft.Authorization/roleAssignments","name":"73d453e9-cd90-55bc-a3f0-078c8f1b8e30"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9707032Z","updatedOn":"2026-02-25T02:49:12.4889489Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/4cfa7055-b330-58ac-bea4-cf0e72abc5ff","type":"Microsoft.Authorization/roleAssignments","name":"4cfa7055-b330-58ac-bea4-cf0e72abc5ff"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9847168Z","updatedOn":"2026-02-25T02:49:12.4949681Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/101bfda6-41d9-58c6-9a16-6f25f4c4b131","type":"Microsoft.Authorization/roleAssignments","name":"101bfda6-41d9-58c6-9a16-6f25f4c4b131"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:01:58.9795499Z","updatedOn":"2026-02-25T02:01:58.9795499Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa/providers/Microsoft.Authorization/roleAssignments/a9fd7947-ba84-599e-838d-6cd22f42ef7a","type":"Microsoft.Authorization/roleAssignments","name":"a9fd7947-ba84-599e-838d-6cd22f42ef7a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.7648061Z","updatedOn":"2026-03-26T06:17:02.7648061Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/90857788-3534-5da8-abbd-fb99df7e632d","type":"Microsoft.Authorization/roleAssignments","name":"90857788-3534-5da8-abbd-fb99df7e632d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.9211819Z","updatedOn":"2026-03-26T06:17:02.9211819Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/a787ed5b-1f87-59c7-8497-fcc47882dc25","type":"Microsoft.Authorization/roleAssignments","name":"a787ed5b-1f87-59c7-8497-fcc47882dc25"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:18:03.4450814Z","updatedOn":"2026-03-26T06:18:03.4450814Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6/providers/Microsoft.Authorization/roleAssignments/1b32d9b6-8672-55e1-af60-2843979b5d11","type":"Microsoft.Authorization/roleAssignments","name":"1b32d9b6-8672-55e1-af60-2843979b5d11"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.7149469Z","updatedOn":"2026-03-30T21:14:24.1352264Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/daf6cddc-461e-5507-80ac-1b47d025defe","type":"Microsoft.Authorization/roleAssignments","name":"daf6cddc-461e-5507-80ac-1b47d025defe"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.6762167Z","updatedOn":"2026-03-30T21:14:24.0212102Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/bc1a2d3e-657b-58a6-bae0-9eae55ff066e","type":"Microsoft.Authorization/roleAssignments","name":"bc1a2d3e-657b-58a6-bae0-9eae55ff066e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:21:05.2722976Z","updatedOn":"2026-03-30T21:15:04.1182545Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb","type":"Microsoft.Authorization/roleAssignments","name":"e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s","condition":null,"conditionVersion":null,"createdOn":"2026-03-30T20:15:50.2225745Z","updatedOn":"2026-03-30T21:15:15.0669190Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s/providers/Microsoft.Authorization/roleAssignments/138eaa02-7015-5714-93f6-0b60642a6f76","type":"Microsoft.Authorization/roleAssignments","name":"138eaa02-7015-5714-93f6-0b60642a6f76"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:49:49.8204393Z","updatedOn":"2026-04-01T14:49:49.8204393Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/396fa00a-f149-4187-b64e-a4dba132425b","type":"Microsoft.Authorization/roleAssignments","name":"396fa00a-f149-4187-b64e-a4dba132425b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:50:53.6495590Z","updatedOn":"2026-04-01T14:50:53.6495590Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/b086de43-a12f-4221-9202-ae3a60639a80","type":"Microsoft.Authorization/roleAssignments","name":"b086de43-a12f-4221-9202-ae3a60639a80"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:51:49.4986139Z","updatedOn":"2026-04-01T14:51:49.4986139Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/37715462-b5e0-4018-b28e-64dc5e6c6f66","type":"Microsoft.Authorization/roleAssignments","name":"37715462-b5e0-4018-b28e-64dc5e6c6f66"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:53:45.2400140Z","updatedOn":"2026-04-01T14:53:45.2400140Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e0fa3920-df78-405a-b221-43d93dfa6e3f","type":"Microsoft.Authorization/roleAssignments","name":"e0fa3920-df78-405a-b221-43d93dfa6e3f"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:13:01.0359883Z","updatedOn":"2026-04-01T15:13:01.0359883Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/26250363-3add-4120-a6d1-6cdfae07365d","type":"Microsoft.Authorization/roleAssignments","name":"26250363-3add-4120-a6d1-6cdfae07365d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:14:22.4283237Z","updatedOn":"2026-04-01T15:14:22.4283237Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/48ccbbc9-bfdb-459b-b687-b612d9e042a4","type":"Microsoft.Authorization/roleAssignments","name":"48ccbbc9-bfdb-459b-b687-b612d9e042a4"}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "39026" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:14:23 GMT + - Thu, 09 Apr 2026 18:21:42 GMT Expires: - "-1" Pragma: @@ -614,20 +600,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/8dd77fd2-4085-4892-9e61-bbea490a4801 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c176e78d-eb57-4ade-a63d-670d3bb5ddf9 + - 7082defb-0298-45dd-878b-fce1405e60a9 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001424Z:c176e78d-eb57-4ade-a63d-670d3bb5ddf9 + - EASTUS:20260409T182142Z:e936ea23-33ce-4101-8650-463b0dfb44b2 X-Msedge-Ref: - - 'Ref A: 8942E773D5624B3790258820FB59505A Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:24Z' + - 'Ref A: 7A66435C5DCF4C5E9ABFA368CFFDAA59 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:42Z' status: 200 OK code: 200 - duration: 356.1148ms + duration: 412.564958ms - id: 9 request: proto: HTTP/1.1 @@ -642,15 +630,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940?api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635?api-version=2022-04-01 method: GET response: proto: HTTP/2.0 @@ -658,18 +648,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2905 + content_length: 642 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:48Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:14:23.810618Z","duration":"PT4M35.5467466S","correlationId":"cef3eca015989286764f3d735d335276","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w29f862"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"critjx2xx5j5ka6"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-itjx2xx5j5ka6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"critjx2xx5j5ka6.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6/providers/Microsoft.Authorization/roleAssignments/0132a90f-753d-51a5-93e5-20867e9cc237"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6"}]}}' + body: '{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants full access to manage all resources, including the ability to assign roles in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:45.8978856Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}' headers: Cache-Control: - no-cache Content-Length: - - "2905" + - "642" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:14:24 GMT + - Thu, 09 Apr 2026 18:21:42 GMT Expires: - "-1" Pragma: @@ -681,32 +671,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 + - b9ddf6d835f27ca94999eee72f0a6fbc + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/11722d8d-ec1a-4e28-b1e3-5ac1f4ad2d5f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2d57676d-dba1-4578-9d48-6a61a78c5705 + - 7539e9ef-c0a7-4955-beb5-5522e6fb90f7 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001424Z:2d57676d-dba1-4578-9d48-6a61a78c5705 + - EASTUS:20260409T182142Z:79d07991-6a06-4840-beb3-109a117326de X-Msedge-Ref: - - 'Ref A: 8AC2506829C2413AA9B1163AA84EC866 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:24Z' + - 'Ref A: 0C788749F1F04B6C836F7B308E97E12F Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:42Z' status: 200 OK code: 200 - duration: 342.4015ms + duration: 90.203917ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 7844 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d209f3e","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":"3439496075272322378"}},"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":"9361355072579733249"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"}}' form: {} headers: Accept: @@ -715,30 +707,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "7844" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w29f862%27&api-version=2021-04-01 - method: GET + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 2568 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","name":"rg-azdtest-w29f862","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","DeleteAfter":"2026-01-23T01:09:48Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T19:21:43Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T18:21:43.0541489Z","duration":"PT0S","correlationId":"b9ddf6d835f27ca94999eee72f0a6fbc","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d209f3e"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u/providers/Microsoft.Authorization/roleAssignments/7f24ecc4-6b4b-55c4-968d-c46470d08ae7"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "2568" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:14:26 GMT + - Thu, 09 Apr 2026 18:21:43 GMT Expires: - "-1" Pragma: @@ -750,32 +746,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cef3eca015989286764f3d735d335276 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - b9ddf6d835f27ca94999eee72f0a6fbc + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 2a795618-65c2-4fb2-a5b6-6d656d90f0a3 + - 8e149985-bdc8-4f19-b1de-eb8fd8a7840b X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001427Z:2a795618-65c2-4fb2-a5b6-6d656d90f0a3 + - EASTUS2:20260409T182143Z:8e149985-bdc8-4f19-b1de-eb8fd8a7840b X-Msedge-Ref: - - 'Ref A: 0484DA0325814D3ABD454CCFDC1822FB Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:27Z' + - 'Ref A: F39AAE60B90A40318DC24D01F10A7C19 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:42Z' status: 200 OK code: 200 - duration: 47.1666ms + duration: 1.036579292s - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 7844 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d209f3e","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":"3439496075272322378"}},"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":"9361355072579733249"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"}}' form: {} headers: Accept: @@ -784,30 +780,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "7844" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w29f862%27&api-version=2021-04-01 - method: GET + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 1411 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","name":"rg-azdtest-w29f862","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","DeleteAfter":"2026-01-23T01:09:48Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T19:21:44Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T18:21:44.1816666Z","duration":"PT0.0004326S","correlationId":"b9ddf6d835f27ca94999eee72f0a6fbc","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d209f3e"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879/operationStatuses/08584258479812875044?api-version=2021-04-01&t=639113557049472809&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=qZkW3gjcIwrM-niU1fK2_3hV6w5cpibR_bWmB1t713qtexxuny42FI0btRMZZcrGo_rrWDJRtbuqYDzUtcitM-m9BLnNKckoXkAfZbaFMt3RVzxJAFcsR4RAONVLJWzLkixcjV6yzXQD1Z_jYNZhSn_Jl3yFJ7NA5JX71eBVybdvh2t2DteZBdzciNB30AOI_oFYFp7CgBP_rMw5kHILmB8zV2z9xbc9urQDDNX0YmnB8wPkbRZ4hMF1dLzSOirbVSTbwRQ0zBVfSfQMlY-Kk6TfmX4FDqvDHzYnOzdO_RxbqRLmJDIxGejPbGog6uUoQtjTS72WGOhpMtG2HVe7rw&h=CGKBfVvMlMmtguZxNdLvRUnu8NasMFSFbUB1MMC25-g Cache-Control: - no-cache Content-Length: - - "325" + - "1411" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:14:31 GMT + - Thu, 09 Apr 2026 18:21:44 GMT Expires: - "-1" Pragma: @@ -819,20 +821,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - b9ddf6d835f27ca94999eee72f0a6fbc + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 66791383-7de4-4237-9306-ddcc1c62823c + - f6768f1e-2a48-4149-bb49-d3de85309efc X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001432Z:66791383-7de4-4237-9306-ddcc1c62823c + - EASTUS:20260409T182144Z:f6768f1e-2a48-4149-bb49-d3de85309efc X-Msedge-Ref: - - 'Ref A: E895740F88DB49A5B18BFFE910CD5341 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:32Z' - status: 200 OK - code: 200 - duration: 48.1832ms + - 'Ref A: 91C3841F81804E639F6E5D3C4984790F Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:21:43Z' + status: 201 Created + code: 201 + duration: 1.127947541s - id: 12 request: proto: HTTP/1.1 @@ -847,17 +851,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879/operationStatuses/08584258479812875044?api-version=2021-04-01&t=639113557049472809&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=qZkW3gjcIwrM-niU1fK2_3hV6w5cpibR_bWmB1t713qtexxuny42FI0btRMZZcrGo_rrWDJRtbuqYDzUtcitM-m9BLnNKckoXkAfZbaFMt3RVzxJAFcsR4RAONVLJWzLkixcjV6yzXQD1Z_jYNZhSn_Jl3yFJ7NA5JX71eBVybdvh2t2DteZBdzciNB30AOI_oFYFp7CgBP_rMw5kHILmB8zV2z9xbc9urQDDNX0YmnB8wPkbRZ4hMF1dLzSOirbVSTbwRQ0zBVfSfQMlY-Kk6TfmX4FDqvDHzYnOzdO_RxbqRLmJDIxGejPbGog6uUoQtjTS72WGOhpMtG2HVe7rw&h=CGKBfVvMlMmtguZxNdLvRUnu8NasMFSFbUB1MMC25-g method: GET response: proto: HTTP/2.0 @@ -865,18 +867,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 22 uncompressed: false - body: '{"value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:14:32 GMT + - Thu, 09 Apr 2026 18:23:15 GMT Expires: - "-1" Pragma: @@ -888,20 +890,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cdefd1ed-7969-4903-85d0-3e7bfa95b34c + - b4a45eb9-eea3-4bff-8dc8-185fed510657 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001433Z:cdefd1ed-7969-4903-85d0-3e7bfa95b34c + - EASTUS2:20260409T182315Z:b4a45eb9-eea3-4bff-8dc8-185fed510657 X-Msedge-Ref: - - 'Ref A: AB0E5A992FB44D5482D50CF170923F18 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:32Z' + - 'Ref A: 0A5E212098FB4CBB826853EF893790CD Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:15Z' status: 200 OK code: 200 - duration: 671.6203ms + duration: 236.943959ms - id: 13 request: proto: HTTP/1.1 @@ -916,17 +918,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w29f862%27&api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -934,18 +934,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 2904 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","name":"rg-azdtest-w29f862","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","DeleteAfter":"2026-01-23T01:09:48Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T19:21:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T18:22:48.1730293Z","duration":"PT1M3.9913627S","correlationId":"b9ddf6d835f27ca94999eee72f0a6fbc","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d209f3e"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crpogq2w7bplv2u"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-pogq2w7bplv2u"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crpogq2w7bplv2u.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u/providers/Microsoft.Authorization/roleAssignments/7f24ecc4-6b4b-55c4-968d-c46470d08ae7"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "2904" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:14:32 GMT + - Thu, 09 Apr 2026 18:23:15 GMT Expires: - "-1" Pragma: @@ -957,82 +957,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1e3f7301-2243-4571-82b3-1df1e75711c6 + - 481ee697-5913-4de3-84c2-e316804374dc X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001433Z:1e3f7301-2243-4571-82b3-1df1e75711c6 + - EASTUS:20260409T182315Z:481ee697-5913-4de3-84c2-e316804374dc X-Msedge-Ref: - - 'Ref A: 437D9B5C41D947EA9A0D63D3738EDCF5 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:33Z' + - 'Ref A: 5D9CA5DFD79240279DB7DEA78C1257D2 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:15Z' status: 200 OK code: 200 - duration: 85.3044ms + duration: 151.15575ms - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: -1 - transfer_encoding: - - chunked - trailer: {} - host: critjx2xx5j5ka6.azurecr.io - remote_addr: "" - request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=critjx2xx5j5ka6.azurecr.io - form: - access_token: - - SANITIZED - grant_type: - - access_token - service: - - critjx2xx5j5ka6.azurecr.io - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://critjx2xx5j5ka6.azurecr.io:443/oauth2/exchange - method: POST - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: false - body: '{"refresh_token":"SANITIZED"}' - headers: - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 23 Jan 2026 00:14:33 GMT - Server: - - AzureContainerRegistry - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - X-Ms-Ratelimit-Remaining-Calls-Per-Second: - - "166.65" - status: 200 OK - code: 200 - duration: 396.6292ms - - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1053,10 +992,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w29f862%27&api-version=2021-04-01 + - b9ddf6d835f27ca94999eee72f0a6fbc + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d209f3e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1066,7 +1005,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","name":"rg-azdtest-w29f862","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","DeleteAfter":"2026-01-23T01:09:48Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","name":"rg-azdtest-d209f3e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","DeleteAfter":"2026-04-09T19:21:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1075,7 +1014,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:14:46 GMT + - Thu, 09 Apr 2026 18:23:18 GMT Expires: - "-1" Pragma: @@ -1087,21 +1026,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 + - b9ddf6d835f27ca94999eee72f0a6fbc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 878da982-f2d3-434e-b8d0-83907e75ce1d + - 0c360f7f-63e1-4a72-a517-87916d8d9c0a X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001447Z:878da982-f2d3-434e-b8d0-83907e75ce1d + - EASTUS2:20260409T182319Z:0c360f7f-63e1-4a72-a517-87916d8d9c0a X-Msedge-Ref: - - 'Ref A: 4943F77FB077404EA1A82D38264420C7 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:47Z' + - 'Ref A: 4EC4AAC3376F4E94952DEE177CB60BEF Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:19Z' status: 200 OK code: 200 - duration: 92.1362ms - - id: 16 + duration: 223.964833ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1109,23 +1048,19 @@ 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 User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -1133,44 +1068,3265 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 138770 uncompressed: false - body: '{"value":[]}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "12" + - "138770" + 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, 23 Jan 2026 00:14:46 GMT + - Thu, 09 Apr 2026 18:23:19 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 18:28:19 GMT + Source-Age: + - "152" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - d7a758a4-c8d0-4a95-82ad-77a952c01ba1 - X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001447Z:d7a758a4-c8d0-4a95-82ad-77a952c01ba1 - X-Msedge-Ref: - - 'Ref A: 24076186A1594E8E86D466AA23C92191 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:47Z' + X-Fastly-Request-Id: + - 70c55faaf915170f72b0ad7a1360eaf986737d2d + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760045-MIA + X-Timer: + - S1775759000.838509,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 183.2953ms - - id: 17 + duration: 92.187792ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1178,144 +4334,4474 @@ 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; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w29f862%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/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 0 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","name":"rg-azdtest-w29f862","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","DeleteAfter":"2026-01-23T01:09:48Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "325" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Fri, 23 Jan 2026 00:14:47 GMT + - Thu, 09 Apr 2026 18:23:20 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 18:23:20 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 8e0305f3-f1c5-4bb8-8f46-69e53f08e01b - X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001447Z:8e0305f3-f1c5-4bb8-8f46-69e53f08e01b - X-Msedge-Ref: - - 'Ref A: B5AADB79C8FB46FC91EA065AB01A50B6 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:47Z' - status: 200 OK - code: 200 - duration: 161.6425ms - - id: 18 + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 275.916375ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 27574 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"properties":{"mode":"Incremental","parameters":{"containerAppsEnvironmentName":{"value":"cae-itjx2xx5j5ka6","reference":null},"containerRegistryName":{"value":"critjx2xx5j5ka6","reference":null},"environmentName":{"value":"azdtest-w29f862","reference":null},"identityId":{"value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6","reference":null},"imageName":{"value":"critjx2xx5j5ka6.azurecr.io/containerapp/web-azdtest-w29f862:azd-deploy-1769126940","reference":null},"location":{"value":"eastus2","reference":null}},"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":"2299578518847698082"}},"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","minLength":1,"metadata":{"description":"Primary location for all resources"}},"containerRegistryName":{"type":"string"},"containerAppsEnvironmentName":{"type":"string"},"imageName":{"type":"string"},"identityId":{"type":"string"}},"resources":[{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"web","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"name":{"value":"web"},"ingressTargetPort":{"value":8080},"scaleMinReplicas":{"value":1},"scaleMaxReplicas":{"value":10},"secrets":{"value":{"secureList":[]}},"containers":{"value":[{"image":"[parameters(''imageName'')]","name":"main","resources":{"cpu":"[json(''0.5'')]","memory":"1.0Gi"}}]},"managedIdentities":{"value":{"systemAssigned":false,"userAssignedResourceIds":["[parameters(''identityId'')]"]}},"registries":{"value":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', parameters(''containerRegistryName'')), ''2023-01-01-preview'').loginServer]","identity":"[parameters(''identityId'')]"}]},"environmentResourceId":{"value":"[resourceId(''Microsoft.App/managedEnvironments'', parameters(''containerAppsEnvironmentName''))]"},"location":{"value":"[parameters(''location'')]"},"tags":{"value":{"azd-env-name":"[parameters(''environmentName'')]","azd-service-name":"web"}}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"6290070069549338411"},"name":"Container Apps","description":"This module deploys a Container App.","owner":"Azure/module-maintainers"},"definitions":{"managedIdentitiesType":{"type":"object","properties":{"systemAssigned":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Enables system assigned managed identity on the resource."}},"userAssignedResourceIds":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. The resource ID(s) to assign to the resource."}}},"nullable":true},"lockType":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Specify the name of lock."}},"kind":{"type":"string","allowedValues":["CanNotDelete","None","ReadOnly"],"nullable":true,"metadata":{"description":"Optional. Specify the type of lock."}}},"nullable":true},"roleAssignmentType":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. The name (as GUID) of the role assignment. If not provided, a GUID will be generated."}},"roleDefinitionIdOrName":{"type":"string","metadata":{"description":"Required. The role to assign. You can provide either the display name of the role definition, the role definition GUID, or its fully qualified ID in the following format: ''/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11''."}},"principalId":{"type":"string","metadata":{"description":"Required. The principal ID of the principal (user/group/identity) to assign the role to."}},"principalType":{"type":"string","allowedValues":["Device","ForeignGroup","Group","ServicePrincipal","User"],"nullable":true,"metadata":{"description":"Optional. The principal type of the assigned principal ID."}},"description":{"type":"string","nullable":true,"metadata":{"description":"Optional. The description of the role assignment."}},"condition":{"type":"string","nullable":true,"metadata":{"description":"Optional. The conditions on the role assignment. This limits the resources it can be assigned to. e.g.: @Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase \"foo_storage_container\"."}},"conditionVersion":{"type":"string","allowedValues":["2.0"],"nullable":true,"metadata":{"description":"Optional. Version of the condition."}},"delegatedManagedIdentityResourceId":{"type":"string","nullable":true,"metadata":{"description":"Optional. The Resource Id of the delegated managed identity resource."}}}},"nullable":true},"container":{"type":"object","properties":{"args":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command arguments."}},"command":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command."}},"env":{"type":"array","items":{"$ref":"#/definitions/environmentVar"},"nullable":true,"metadata":{"description":"Optional. Container environment variables."}},"image":{"type":"string","metadata":{"description":"Required. Container image tag."}},"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Custom container name."}},"probes":{"type":"array","items":{"$ref":"#/definitions/containerAppProbe"},"nullable":true,"metadata":{"description":"Optional. List of probes for the container."}},"resources":{"type":"object","metadata":{"description":"Required. Container resource requirements."}},"volumeMounts":{"type":"array","items":{"$ref":"#/definitions/volumeMount"},"nullable":true,"metadata":{"description":"Optional. Container volume mounts."}}}},"environmentVar":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Environment variable name."}},"secretRef":{"type":"string","nullable":true,"metadata":{"description":"Optional. Name of the Container App secret from which to pull the environment variable value."}},"value":{"type":"string","nullable":true,"metadata":{"description":"Optional. Non-secret environment variable value."}}}},"containerAppProbe":{"type":"object","properties":{"failureThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3."}},"httpGet":{"$ref":"#/definitions/containerAppProbeHttpGet","nullable":true,"metadata":{"description":"Optional. HTTPGet specifies the http request to perform."}},"initialDelaySeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":60,"metadata":{"description":"Optional. Number of seconds after the container has started before liveness probes are initiated."}},"periodSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. How often (in seconds) to perform the probe. Default to 10 seconds."}},"successThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup."}},"tcpSocket":{"$ref":"#/definitions/containerAppProbeTcpSocket","nullable":true,"metadata":{"description":"Optional. TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported."}},"terminationGracePeriodSeconds":{"type":"int","nullable":true,"metadata":{"description":"Optional. Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod''s terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)."}},"timeoutSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. Number of seconds after which the probe times out. Defaults to 1 second."}},"type":{"type":"string","allowedValues":["Liveness","Readiness","Startup"],"nullable":true,"metadata":{"description":"Optional. The type of probe."}}}},"corsPolicyType":{"type":"object","properties":{"allowCredentials":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Switch to determine whether the resource allows credentials."}},"allowedHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-headers header."}},"allowedMethods":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-methods header."}},"allowedOrigins":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-origins header."}},"exposeHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-expose-headers header."}},"maxAge":{"type":"int","nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-max-age header."}}},"nullable":true},"containerAppProbeHttpGet":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to. Defaults to the pod IP."}},"httpHeaders":{"type":"array","items":{"$ref":"#/definitions/containerAppProbeHttpGetHeadersItem"},"nullable":true,"metadata":{"description":"Optional. HTTP headers to set in the request."}},"path":{"type":"string","metadata":{"description":"Required. Path to access on the HTTP server."}},"port":{"type":"int","metadata":{"description":"Required. Name or number of the port to access on the container."}},"scheme":{"type":"string","allowedValues":["HTTP","HTTPS"],"nullable":true,"metadata":{"description":"Optional. Scheme to use for connecting to the host. Defaults to HTTP."}}}},"containerAppProbeHttpGetHeadersItem":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Name of the header."}},"value":{"type":"string","metadata":{"description":"Required. Value of the header."}}}},"containerAppProbeTcpSocket":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to, defaults to the pod IP."}},"port":{"type":"int","minValue":1,"maxValue":65535,"metadata":{"description":"Required. Number of the port to access on the container. Name must be an IANA_SVC_NAME."}}}},"volumeMount":{"type":"object","properties":{"mountPath":{"type":"string","metadata":{"description":"Required. Path within the container at which the volume should be mounted.Must not contain '':''."}},"subPath":{"type":"string","nullable":true,"metadata":{"description":"Optional. Path within the volume from which the container''s volume should be mounted. Defaults to \"\" (volume''s root)."}},"volumeName":{"type":"string","metadata":{"description":"Required. This must match the Name of a Volume."}}}}},"parameters":{"name":{"type":"string","metadata":{"description":"Required. Name of the Container App."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Optional. Location for all Resources."}},"disableIngress":{"type":"bool","defaultValue":false,"metadata":{"description":"Optional. Bool to disable all ingress traffic for the container app."}},"ingressExternal":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if the App exposes an external HTTP endpoint."}},"clientCertificateMode":{"type":"string","defaultValue":"ignore","allowedValues":["accept","ignore","require"],"metadata":{"description":"Optional. Client certificate mode for mTLS."}},"corsPolicy":{"$ref":"#/definitions/corsPolicyType","metadata":{"description":"Optional. Object userd to configure CORS policy."}},"stickySessionsAffinity":{"type":"string","defaultValue":"none","allowedValues":["none","sticky"],"metadata":{"description":"Optional. Bool indicating if the Container App should enable session affinity."}},"ingressTransport":{"type":"string","defaultValue":"auto","allowedValues":["auto","http","http2","tcp"],"metadata":{"description":"Optional. Ingress transport protocol."}},"ingressAllowInsecure":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections."}},"ingressTargetPort":{"type":"int","defaultValue":80,"metadata":{"description":"Optional. Target Port in containers for traffic from ingress."}},"scaleMaxReplicas":{"type":"int","defaultValue":10,"metadata":{"description":"Optional. Maximum number of container replicas. Defaults to 10 if not set."}},"scaleMinReplicas":{"type":"int","defaultValue":3,"metadata":{"description":"Optional. Minimum number of container replicas. Defaults to 3 if not set."}},"scaleRules":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Scaling rules."}},"activeRevisionsMode":{"type":"string","defaultValue":"Single","allowedValues":["Multiple","Single"],"metadata":{"description":"Optional. Controls how active revisions are handled for the Container app."}},"environmentResourceId":{"type":"string","metadata":{"description":"Required. Resource ID of environment."}},"lock":{"$ref":"#/definitions/lockType","metadata":{"description":"Optional. The lock settings of the service."}},"tags":{"type":"object","nullable":true,"metadata":{"description":"Optional. Tags of the resource."}},"registries":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Collection of private container registry credentials for containers used by the Container app."}},"managedIdentities":{"$ref":"#/definitions/managedIdentitiesType","metadata":{"description":"Optional. The managed identity definition for this resource."}},"roleAssignments":{"$ref":"#/definitions/roleAssignmentType","metadata":{"description":"Optional. Array of role assignments to create."}},"enableTelemetry":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Enable/Disable usage telemetry for module."}},"customDomains":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Custom domain bindings for Container App hostnames."}},"exposedPort":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Exposed Port in containers for TCP traffic from ingress."}},"ipSecurityRestrictions":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Rules to restrict incoming IP address."}},"trafficLabel":{"type":"string","defaultValue":"label-1","metadata":{"description":"Optional. Associates a traffic label with a revision. Label name should be consist of lower case alphanumeric characters or dashes."}},"trafficLatestRevision":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Indicates that the traffic weight belongs to a latest stable revision."}},"trafficRevisionName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Name of a revision."}},"trafficWeight":{"type":"int","defaultValue":100,"metadata":{"description":"Optional. Traffic weight assigned to a revision."}},"dapr":{"type":"object","defaultValue":{},"metadata":{"description":"Optional. Dapr configuration for the Container App."}},"maxInactiveRevisions":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Max inactive revisions a Container App can have."}},"containers":{"type":"array","items":{"$ref":"#/definitions/container"},"metadata":{"description":"Required. List of container definitions for the Container App."}},"initContainersTemplate":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of specialized containers that run before app containers."}},"secrets":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Optional. The secrets of the Container App."}},"revisionSuffix":{"type":"string","defaultValue":"","metadata":{"description":"Optional. User friendly suffix that is appended to the revision name."}},"volumes":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of volume definitions for the Container App."}},"workloadProfileName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Workload profile name to pin for container app execution."}}},"variables":{"copy":[{"name":"formattedRoleAssignments","count":"[length(coalesce(parameters(''roleAssignments''), createArray()))]","input":"[union(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')], createObject(''roleDefinitionId'', coalesce(tryGet(variables(''builtInRoleNames''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName), if(contains(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, ''/providers/Microsoft.Authorization/roleDefinitions/''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName)))))]"}],"secretList":"[if(not(empty(parameters(''secrets''))), parameters(''secrets'').secureList, createArray())]","formattedUserAssignedIdentities":"[reduce(map(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createArray()), lambda(''id'', createObject(format(''{0}'', lambdaVariables(''id'')), createObject()))), createObject(), lambda(''cur'', ''next'', union(lambdaVariables(''cur''), lambdaVariables(''next''))))]","identity":"[if(not(empty(parameters(''managedIdentities''))), createObject(''type'', if(coalesce(tryGet(parameters(''managedIdentities''), ''systemAssigned''), false()), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''SystemAssigned,UserAssigned'', ''SystemAssigned''), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''UserAssigned'', ''None'')), ''userAssignedIdentities'', if(not(empty(variables(''formattedUserAssignedIdentities''))), variables(''formattedUserAssignedIdentities''), null())), null())]","builtInRoleNames":{"ContainerApp Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b'')]","Contributor":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]","Owner":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''8e3af657-a8ff-443c-a75c-2fe8c4bcb635'')]","Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''acdd72a7-3385-48ef-bd42-f606fba81ae7'')]","Role Based Access Control Administrator (Preview)":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''f58310d9-a9f6-439a-9e8d-f62e7b41a168'')]","User Access Administrator":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''18d7d88d-d35e-4fb5-a5c3-7773c20a72d9'')]"}},"resources":{"avmTelemetry":{"condition":"[parameters(''enableTelemetry'')]","type":"Microsoft.Resources/deployments","apiVersion":"2024-03-01","name":"[format(''46d3xbcp.res.app-containerapp.{0}.{1}'', replace(''0.8.0'', ''.'', ''-''), substring(uniqueString(deployment().name, parameters(''location'')), 0, 4))]","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[],"outputs":{"telemetry":{"type":"String","value":"For more information, see https://aka.ms/avm/TelemetryInfo"}}}}},"containerApp":{"type":"Microsoft.App/containerApps","apiVersion":"2023-05-01","name":"[parameters(''name'')]","tags":"[parameters(''tags'')]","location":"[parameters(''location'')]","identity":"[variables(''identity'')]","properties":{"environmentId":"[parameters(''environmentResourceId'')]","configuration":{"activeRevisionsMode":"[parameters(''activeRevisionsMode'')]","dapr":"[if(not(empty(parameters(''dapr''))), parameters(''dapr''), null())]","ingress":"[if(parameters(''disableIngress''), null(), createObject(''allowInsecure'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''ingressAllowInsecure''), false()), ''customDomains'', if(not(empty(parameters(''customDomains''))), parameters(''customDomains''), null()), ''corsPolicy'', if(and(not(equals(parameters(''corsPolicy''), null())), not(equals(parameters(''ingressTransport''), ''tcp''))), createObject(''allowCredentials'', coalesce(tryGet(parameters(''corsPolicy''), ''allowCredentials''), false()), ''allowedHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedHeaders''), createArray()), ''allowedMethods'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedMethods''), createArray()), ''allowedOrigins'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedOrigins''), createArray()), ''exposeHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''exposeHeaders''), createArray()), ''maxAge'', tryGet(parameters(''corsPolicy''), ''maxAge'')), null()), ''clientCertificateMode'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''clientCertificateMode''), null()), ''exposedPort'', parameters(''exposedPort''), ''external'', parameters(''ingressExternal''), ''ipSecurityRestrictions'', if(not(empty(parameters(''ipSecurityRestrictions''))), parameters(''ipSecurityRestrictions''), null()), ''targetPort'', parameters(''ingressTargetPort''), ''stickySessions'', createObject(''affinity'', parameters(''stickySessionsAffinity'')), ''traffic'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), createArray(createObject(''label'', parameters(''trafficLabel''), ''latestRevision'', parameters(''trafficLatestRevision''), ''revisionName'', parameters(''trafficRevisionName''), ''weight'', parameters(''trafficWeight''))), null()), ''transport'', parameters(''ingressTransport'')))]","maxInactiveRevisions":"[parameters(''maxInactiveRevisions'')]","registries":"[if(not(empty(parameters(''registries''))), parameters(''registries''), null())]","secrets":"[variables(''secretList'')]"},"template":{"containers":"[parameters(''containers'')]","initContainers":"[if(not(empty(parameters(''initContainersTemplate''))), parameters(''initContainersTemplate''), null())]","revisionSuffix":"[parameters(''revisionSuffix'')]","scale":{"maxReplicas":"[parameters(''scaleMaxReplicas'')]","minReplicas":"[parameters(''scaleMinReplicas'')]","rules":"[if(not(empty(parameters(''scaleRules''))), parameters(''scaleRules''), null())]"},"volumes":"[if(not(empty(parameters(''volumes''))), parameters(''volumes''), null())]"},"workloadProfileName":"[parameters(''workloadProfileName'')]"}},"containerApp_lock":{"condition":"[and(not(empty(coalesce(parameters(''lock''), createObject()))), not(equals(tryGet(parameters(''lock''), ''kind''), ''None'')))]","type":"Microsoft.Authorization/locks","apiVersion":"2020-05-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(parameters(''lock''), ''name''), format(''lock-{0}'', parameters(''name'')))]","properties":{"level":"[coalesce(tryGet(parameters(''lock''), ''kind''), '''')]","notes":"[if(equals(tryGet(parameters(''lock''), ''kind''), ''CanNotDelete''), ''Cannot delete resource or child resources.'', ''Cannot delete or modify the resource or child resources.'')]"},"dependsOn":["containerApp"]},"containerApp_roleAssignments":{"copy":{"name":"containerApp_roleAssignments","count":"[length(coalesce(variables(''formattedRoleAssignments''), createArray()))]"},"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''name''), guid(resourceId(''Microsoft.App/containerApps'', parameters(''name'')), coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId, coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId))]","properties":{"roleDefinitionId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId]","principalId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId]","description":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''description'')]","principalType":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''principalType'')]","condition":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition'')]","conditionVersion":"[if(not(empty(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition''))), coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''conditionVersion''), ''2.0''), null())]","delegatedManagedIdentityResourceId":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''delegatedManagedIdentityResourceId'')]"},"dependsOn":["containerApp"]}},"outputs":{"resourceId":{"type":"string","metadata":{"description":"The resource ID of the Container App."},"value":"[resourceId(''Microsoft.App/containerApps'', parameters(''name''))]"},"fqdn":{"type":"string","metadata":{"description":"The configuration of ingress fqdn."},"value":"[if(parameters(''disableIngress''), ''IngressDisabled'', reference(''containerApp'').configuration.ingress.fqdn)]"},"resourceGroupName":{"type":"string","metadata":{"description":"The name of the resource group the Container App was deployed into."},"value":"[resourceGroup().name]"},"name":{"type":"string","metadata":{"description":"The name of the Container App."},"value":"[parameters(''name'')]"},"systemAssignedMIPrincipalId":{"type":"string","metadata":{"description":"The principal ID of the system assigned identity."},"value":"[coalesce(tryGet(tryGet(reference(''containerApp'', ''2023-05-01'', ''full''), ''identity''), ''principalId''), '''')]"},"location":{"type":"string","metadata":{"description":"The location the resource was deployed into."},"value":"[reference(''containerApp'', ''2023-05-01'', ''full'').location]"}}}}}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Resources/deployments'', ''web''), ''2025-04-01'').outputs.fqdn.value)]"}}}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "27574" - Content-Type: - - application/json + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web-1769126940?api-version=2021-04-01 - method: PUT + - 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 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1677 + content_length: 195006 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web-1769126940","name":"web-1769126940","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2299578518847698082","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"critjx2xx5j5ka6"},"containerAppsEnvironmentName":{"type":"String","value":"cae-itjx2xx5j5ka6"},"imageName":{"type":"String","value":"critjx2xx5j5ka6.azurecr.io/containerapp/web-azdtest-w29f862:azd-deploy-1769126940"},"identityId":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-23T00:14:51.7050456Z","duration":"PT0.0008698S","correlationId":"c1f4fae1ca2a23f3264929e0bacb6299","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"critjx2xx5j5ka6","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}]}}' + 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" + } + } + } + ] + }, + { + "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: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web-1769126940/operationStatuses/08584324795937599043?api-version=2021-04-01&t=639047240920800449&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=z7Ttno36ZXrhpqWY5B1qsyt033UofyuUq1RFkpcdcW0Hxuwu6H1Pc9ACwtfBYtW-6mBnaiVBwKkONutYT7l1ygPoZ9Gub1fP6YjPcmtCtjb-Lme_OAwPtf723g6SMYedTLcVyQ6PDmWJyw-judQN37vd8f1vTzPyjGBGn7q8C43xYvz0CwF71DptxPTEFL_p7FmwyxX1gtTTniO59r523YK2zDqBNbPVzhCwLZHIgYhh45ug1T6ig_y49c8on8A8KtBpLdLNDC3MWrkF30VTfwHBDHEGHwzmqRcovm7v5rbyU5VXVh256r8xhGbj3owkclY0GbQbK8i54cVQay254g&h=WpvsPp5KQ_vllF2ruNmiZBNWxaP7lhPbCU1QT3PDIfA + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "1677" + - "195006" + 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, 23 Jan 2026 00:14:51 GMT + - Thu, 09 Apr 2026 18:23:20 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 18:28:20 GMT + Source-Age: + - "152" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - X-Ms-Deployment-Engine-Version: - - 1.560.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - cd02183f-24d6-4bc6-882b-4dc7eb01dfff - X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001452Z:cd02183f-24d6-4bc6-882b-4dc7eb01dfff - X-Msedge-Ref: - - 'Ref A: 9F2DBF7701D54B2786D6617F1ABD0029 Ref B: MWH011020807029 Ref C: 2026-01-23T00:14:51Z' - status: 201 Created - code: 201 - duration: 668.4878ms + X-Fastly-Request-Id: + - 3e33916905f4183ca2aa8166bde56a4f4b08c577 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760045-MIA + X-Timer: + - S1775759000.156149,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 22.45875ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 18:23:20 GMT + Expires: + - Thu, 09 Apr 2026 18:23:20 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 184.935625ms - id: 19 request: proto: HTTP/1.1 @@ -1324,7 +8810,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -1334,11 +8820,11 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web-1769126940/operationStatuses/08584324795937599043?api-version=2021-04-01&t=639047240920800449&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=z7Ttno36ZXrhpqWY5B1qsyt033UofyuUq1RFkpcdcW0Hxuwu6H1Pc9ACwtfBYtW-6mBnaiVBwKkONutYT7l1ygPoZ9Gub1fP6YjPcmtCtjb-Lme_OAwPtf723g6SMYedTLcVyQ6PDmWJyw-judQN37vd8f1vTzPyjGBGn7q8C43xYvz0CwF71DptxPTEFL_p7FmwyxX1gtTTniO59r523YK2zDqBNbPVzhCwLZHIgYhh45ug1T6ig_y49c8on8A8KtBpLdLNDC3MWrkF30VTfwHBDHEGHwzmqRcovm7v5rbyU5VXVh256r8xhGbj3owkclY0GbQbK8i54cVQay254g&h=WpvsPp5KQ_vllF2ruNmiZBNWxaP7lhPbCU1QT3PDIfA + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json method: GET response: proto: HTTP/2.0 @@ -1346,44 +8832,1437 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 41722 uncompressed: false - body: '{"status":"Succeeded"}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "22" + - "41722" + 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, 23 Jan 2026 00:15:51 GMT + - Thu, 09 Apr 2026 18:23:20 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 18:28:20 GMT + Source-Age: + - "152" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 8acba9d0-8157-4ef7-89bc-23ba12031e6c - X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001552Z:8acba9d0-8157-4ef7-89bc-23ba12031e6c - X-Msedge-Ref: - - 'Ref A: 10D8CC76FE4E40AEA743365A2007F26D Ref B: MWH011020807029 Ref C: 2026-01-23T00:15:52Z' + X-Fastly-Request-Id: + - 75cebbec0a5598fda51d5311195c7025089e8f3b + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760045-MIA + X-Timer: + - S1775759000.385351,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 128.6613ms + duration: 17.556708ms - id: 20 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:23:20 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 18:28:20 GMT + Source-Age: + - "152" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 2ee2c76ce8a6ae9f27242d289cc68a979e8acce0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760045-MIA + X-Timer: + - S1775759000.411953,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.482416ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1397,15 +10276,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web-1769126940?api-version=2021-04-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d209f3e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1413,18 +10294,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1952 + content_length: 325 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web-1769126940","name":"web-1769126940","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2299578518847698082","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"critjx2xx5j5ka6"},"containerAppsEnvironmentName":{"type":"String","value":"cae-itjx2xx5j5ka6"},"imageName":{"type":"String","value":"critjx2xx5j5ka6.azurecr.io/containerapp/web-azdtest-w29f862:azd-deploy-1769126940"},"identityId":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:15:30.200093Z","duration":"PT38.4950474S","correlationId":"c1f4fae1ca2a23f3264929e0bacb6299","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"critjx2xx5j5ka6","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"websitE_URL":{"type":"String","value":"https://web.jollyground-dd816771.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/containerApps/web"}]}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","name":"rg-azdtest-d209f3e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","DeleteAfter":"2026-04-09T19:21:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1952" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:51 GMT + - Thu, 09 Apr 2026 18:23:20 GMT Expires: - "-1" Pragma: @@ -1436,21 +10317,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 208d6cde-af5a-46e0-8f65-4c61db2e95f8 + - e46002ce-9eb7-46ac-a829-c51c854f9572 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001552Z:208d6cde-af5a-46e0-8f65-4c61db2e95f8 + - EASTUS:20260409T182321Z:e46002ce-9eb7-46ac-a829-c51c854f9572 X-Msedge-Ref: - - 'Ref A: 6B4A96F8C245436499D618D68EFC38F1 Ref B: MWH011020807029 Ref C: 2026-01-23T00:15:52Z' + - 'Ref A: 3FC55C600440476F9843337DA32F9F96 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:21Z' status: 200 OK code: 200 - duration: 132.9685ms - - id: 21 + duration: 258.740792ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1471,10 +10352,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/containerApps/web?api-version=2025-01-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1482,50 +10363,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3019 + content_length: 12 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/containerapps/web","name":"web","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w29f862","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:14:57.6952468","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:14:57.6952468"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6","workloadProfileName":null,"outboundIpAddresses":["172.175.141.194"],"latestRevisionName":"web--37tvi92","latestReadyRevisionName":"web--37tvi92","latestRevisionFqdn":"web--37tvi92.jollyground-dd816771.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"web.jollyground-dd816771.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true,"label":"label-1"}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":"Ignore","stickySessions":{"affinity":"none"},"additionalPortMappings":null},"registries":[{"server":"critjx2xx5j5ka6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}],"dapr":null,"runtime":null,"maxInactiveRevisions":0,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"critjx2xx5j5ka6.azurecr.io/containerapp/web-azdtest-w29f862:azd-deploy-1769126940","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/containerApps/web/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6":{"principalId":"c5933e51-002b-4b6f-8f82-60468a93cee7","clientId":"cebc542f-8462-476a-a0a2-9f6cf1401e52"}}}}' + body: '{"value":[]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 Cache-Control: - no-cache Content-Length: - - "3019" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:52 GMT + - Thu, 09 Apr 2026 18:23:21 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ab9344ee-ba63-4f67-8dc6-cfde585f0efc + - 3f256a93-c110-4b2b-b7d7-44ab93144f04 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001552Z:ab9344ee-ba63-4f67-8dc6-cfde585f0efc + - EASTUS:20260409T182321Z:3f256a93-c110-4b2b-b7d7-44ab93144f04 X-Msedge-Ref: - - 'Ref A: 4CD74C58076D4720A42DED3204AA540F Ref B: MWH011020807029 Ref C: 2026-01-23T00:15:52Z' - X-Powered-By: - - ASP.NET + - 'Ref A: 3A664D2E17204B25A379ED86147FE3A9 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:21Z' status: 200 OK code: 200 - duration: 165.3003ms - - id: 22 + duration: 221.203208ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1546,10 +10421,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w29f862%27&api-version=2021-04-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d209f3e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1559,7 +10434,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","name":"rg-azdtest-w29f862","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","DeleteAfter":"2026-01-23T01:09:48Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","name":"rg-azdtest-d209f3e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","DeleteAfter":"2026-04-09T19:21:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1568,7 +10443,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:52 GMT + - Thu, 09 Apr 2026 18:23:21 GMT Expires: - "-1" Pragma: @@ -1580,62 +10455,82 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c1f4fae1ca2a23f3264929e0bacb6299 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 403533c9-227e-4b67-adea-3fbca3a1d654 + - 7460519a-24e7-40f1-9869-90cd990dd543 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001553Z:403533c9-227e-4b67-adea-3fbca3a1d654 + - EASTUS:20260409T182321Z:7460519a-24e7-40f1-9869-90cd990dd543 X-Msedge-Ref: - - 'Ref A: A81B923079814118ACF075E01A924EBB Ref B: MWH011020807029 Ref C: 2026-01-23T00:15:52Z' + - 'Ref A: A330ECBDC71C4CC7B13352AB55C60D81 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:21Z' status: 200 OK code: 200 - duration: 102.3109ms - - id: 23 + duration: 272.753875ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] + content_length: -1 + transfer_encoding: + - chunked trailer: {} - host: web.jollyground-dd816771.eastus2.azurecontainerapps.io + host: crpogq2w7bplv2u.azurecr.io remote_addr: "" request_uri: "" - body: "" - form: {} + body: access_token=SANITIZED&grant_type=access_token&service=crpogq2w7bplv2u.azurecr.io + form: + access_token: + - SANITIZED + grant_type: + - access_token + service: + - crpogq2w7bplv2u.azurecr.io headers: Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Type: + - application/x-www-form-urlencoded User-Agent: - - Go-http-client/1.1 - url: https://web.jollyground-dd816771.eastus2.azurecontainerapps.io:443/ - method: GET + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - efe6ae70e896d5555e52ecff29e5ddde + url: https://crpogq2w7bplv2u.azurecr.io:443/oauth2/exchange + method: POST response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked trailer: {} content_length: -1 uncompressed: false - body: Hello, `azd`. + body: '{"refresh_token":"SANITIZED"}' headers: + Connection: + - keep-alive Content-Type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:53 GMT + - Thu, 09 Apr 2026 18:23:22 GMT Server: - - Kestrel + - AzureContainerRegistry + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Correlation-Request-Id: + - efe6ae70e896d5555e52ecff29e5ddde + X-Ms-Ratelimit-Remaining-Calls-Per-Second: + - "166.65" status: 200 OK code: 200 - duration: 323.3785ms - - id: 24 + duration: 444.048333ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1656,10 +10551,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d209f3e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1667,18 +10562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969049 + content_length: 325 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=RY9db4IwGIV%2fC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2bO5OOdGdsH3rT9t%2bzZ4DK7xPyS%2fkQ9Ro63ZJH1z7t%2b33307EcvmQnJCo9cIcHOW101C4j%2fChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2fDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2b5eAF0GRZKQMSaimLaT3J%2b6LiagDM5nAtAUq%2f%2f08e%2fJ2GWtLM4fdhx%2fAQ%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","name":"rg-azdtest-d209f3e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","DeleteAfter":"2026-04-09T19:21:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1969049" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:04 GMT + - Thu, 09 Apr 2026 18:23:37 GMT Expires: - "-1" Pragma: @@ -1690,21 +10585,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7194efc2-9200-4ab7-8760-a44d6e726e21 + - 224f2947-0d23-4253-a7e0-134994079d99 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001604Z:7194efc2-9200-4ab7-8760-a44d6e726e21 + - EASTUS2:20260409T182338Z:224f2947-0d23-4253-a7e0-134994079d99 X-Msedge-Ref: - - 'Ref A: BEF14A504ACC4C49B6A064D2C4C37EE5 Ref B: MWH011020807029 Ref C: 2026-01-23T00:15:58Z' + - 'Ref A: 3F631FEC86B348EBB5B4208572CED400 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:38Z' status: 200 OK code: 200 - duration: 6.7494158s - - id: 25 + duration: 173.536917ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1718,15 +10613,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=RY9db4IwGIV%2FC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2BO5OOdGdsH3rT9t%2BzZ4DK7xPyS%2FkQ9Ro63ZJH1z7t%2B33307EcvmQnJCo9cIcHOW101C4j%2FChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2FDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2B5eAF0GRZKQMSaimLaT3J%2B6LiagDM5nAtAUq%2F%2F08e%2FJ2GWtLM4fdhx%2FAQ%3D%3D&api-version=2021-04-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1734,18 +10631,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 343508 + content_length: 12 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2bZbwa%2b%2f0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2b7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2fUNTIY%2fG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2biO7xFVSSP2v%2bsrgYS5oidP0Cw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","location":"eastus2","name":"azdtest-w29f862-1769126940","properties":{"correlationId":"cef3eca015989286764f3d735d335276","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","resourceName":"rg-azdtest-w29f862","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT4M35.5467466S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6/providers/Microsoft.Authorization/roleAssignments/0132a90f-753d-51a5-93e5-20867e9cc237"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6"}],"outputs":{"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-itjx2xx5j5ka6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"critjx2xx5j5ka6.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"critjx2xx5j5ka6"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:48Z"},"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"17519074622280447864","timestamp":"2026-01-23T00:14:23.810618Z"},"tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "343508" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:07 GMT + - Thu, 09 Apr 2026 18:23:38 GMT Expires: - "-1" Pragma: @@ -1757,21 +10654,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f2f7647d-bb57-4db2-a022-80207baa398c + - 238f9594-3e00-45cc-842f-91521e7f8eba X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001607Z:f2f7647d-bb57-4db2-a022-80207baa398c + - EASTUS2:20260409T182338Z:238f9594-3e00-45cc-842f-91521e7f8eba X-Msedge-Ref: - - 'Ref A: 402933D2B0F64DAD9FE1DBCADB7BFD01 Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:05Z' + - 'Ref A: 80DA3CB71FEA4C7AAFC4B00B55D0A1CB Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:38Z' status: 200 OK code: 200 - duration: 2.6663419s - - id: 26 + duration: 241.965875ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1785,15 +10682,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2BZbwa%2B%2F0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2B7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2FUNTIY%2FG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2BiO7xFVSSP2v%2BsrgYS5oidP0Cw%3D%3D&api-version=2021-04-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d209f3e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1801,18 +10700,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14077 + content_length: 325 uncompressed: false - body: '{"value":[]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","name":"rg-azdtest-d209f3e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","DeleteAfter":"2026-04-09T19:21:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "14077" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:07 GMT + - Thu, 09 Apr 2026 18:23:38 GMT Expires: - "-1" Pragma: @@ -1824,32 +10723,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1f72faec-1386-42f1-a65f-ee02a66839c5 + - baa5cc79-ed7e-4281-b22c-68fdcaa31f4a X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001608Z:1f72faec-1386-42f1-a65f-ee02a66839c5 + - EASTUS2:20260409T182339Z:baa5cc79-ed7e-4281-b22c-68fdcaa31f4a X-Msedge-Ref: - - 'Ref A: 00C1C6D0674944F48B6BDBF74213465C Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:07Z' + - 'Ref A: 620FDB48CFB345B8BED97F2EDC141C64 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:38Z' status: 200 OK code: 200 - duration: 482.4188ms - - id: 27 + duration: 159.399ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 27575 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"properties":{"mode":"Incremental","parameters":{"containerAppsEnvironmentName":{"value":"cae-pogq2w7bplv2u","reference":null},"containerRegistryName":{"value":"crpogq2w7bplv2u","reference":null},"environmentName":{"value":"azdtest-d209f3e","reference":null},"identityId":{"value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u","reference":null},"imageName":{"value":"crpogq2w7bplv2u.azurecr.io/containerapp/web-azdtest-d209f3e:azd-deploy-1775758879","reference":null},"location":{"value":"eastus2","reference":null}},"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":"12728900275957388763"}},"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","minLength":1,"metadata":{"description":"Primary location for all resources"}},"containerRegistryName":{"type":"string"},"containerAppsEnvironmentName":{"type":"string"},"imageName":{"type":"string"},"identityId":{"type":"string"}},"resources":[{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"web","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"name":{"value":"web"},"ingressTargetPort":{"value":8080},"scaleMinReplicas":{"value":1},"scaleMaxReplicas":{"value":10},"secrets":{"value":{"secureList":[]}},"containers":{"value":[{"image":"[parameters(''imageName'')]","name":"main","resources":{"cpu":"[json(''0.5'')]","memory":"1.0Gi"}}]},"managedIdentities":{"value":{"systemAssigned":false,"userAssignedResourceIds":["[parameters(''identityId'')]"]}},"registries":{"value":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', parameters(''containerRegistryName'')), ''2023-01-01-preview'').loginServer]","identity":"[parameters(''identityId'')]"}]},"environmentResourceId":{"value":"[resourceId(''Microsoft.App/managedEnvironments'', parameters(''containerAppsEnvironmentName''))]"},"location":{"value":"[parameters(''location'')]"},"tags":{"value":{"azd-env-name":"[parameters(''environmentName'')]","azd-service-name":"web"}}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"6290070069549338411"},"name":"Container Apps","description":"This module deploys a Container App.","owner":"Azure/module-maintainers"},"definitions":{"managedIdentitiesType":{"type":"object","properties":{"systemAssigned":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Enables system assigned managed identity on the resource."}},"userAssignedResourceIds":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. The resource ID(s) to assign to the resource."}}},"nullable":true},"lockType":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Specify the name of lock."}},"kind":{"type":"string","allowedValues":["CanNotDelete","None","ReadOnly"],"nullable":true,"metadata":{"description":"Optional. Specify the type of lock."}}},"nullable":true},"roleAssignmentType":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. The name (as GUID) of the role assignment. If not provided, a GUID will be generated."}},"roleDefinitionIdOrName":{"type":"string","metadata":{"description":"Required. The role to assign. You can provide either the display name of the role definition, the role definition GUID, or its fully qualified ID in the following format: ''/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11''."}},"principalId":{"type":"string","metadata":{"description":"Required. The principal ID of the principal (user/group/identity) to assign the role to."}},"principalType":{"type":"string","allowedValues":["Device","ForeignGroup","Group","ServicePrincipal","User"],"nullable":true,"metadata":{"description":"Optional. The principal type of the assigned principal ID."}},"description":{"type":"string","nullable":true,"metadata":{"description":"Optional. The description of the role assignment."}},"condition":{"type":"string","nullable":true,"metadata":{"description":"Optional. The conditions on the role assignment. This limits the resources it can be assigned to. e.g.: @Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase \"foo_storage_container\"."}},"conditionVersion":{"type":"string","allowedValues":["2.0"],"nullable":true,"metadata":{"description":"Optional. Version of the condition."}},"delegatedManagedIdentityResourceId":{"type":"string","nullable":true,"metadata":{"description":"Optional. The Resource Id of the delegated managed identity resource."}}}},"nullable":true},"container":{"type":"object","properties":{"args":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command arguments."}},"command":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command."}},"env":{"type":"array","items":{"$ref":"#/definitions/environmentVar"},"nullable":true,"metadata":{"description":"Optional. Container environment variables."}},"image":{"type":"string","metadata":{"description":"Required. Container image tag."}},"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Custom container name."}},"probes":{"type":"array","items":{"$ref":"#/definitions/containerAppProbe"},"nullable":true,"metadata":{"description":"Optional. List of probes for the container."}},"resources":{"type":"object","metadata":{"description":"Required. Container resource requirements."}},"volumeMounts":{"type":"array","items":{"$ref":"#/definitions/volumeMount"},"nullable":true,"metadata":{"description":"Optional. Container volume mounts."}}}},"environmentVar":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Environment variable name."}},"secretRef":{"type":"string","nullable":true,"metadata":{"description":"Optional. Name of the Container App secret from which to pull the environment variable value."}},"value":{"type":"string","nullable":true,"metadata":{"description":"Optional. Non-secret environment variable value."}}}},"containerAppProbe":{"type":"object","properties":{"failureThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3."}},"httpGet":{"$ref":"#/definitions/containerAppProbeHttpGet","nullable":true,"metadata":{"description":"Optional. HTTPGet specifies the http request to perform."}},"initialDelaySeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":60,"metadata":{"description":"Optional. Number of seconds after the container has started before liveness probes are initiated."}},"periodSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. How often (in seconds) to perform the probe. Default to 10 seconds."}},"successThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup."}},"tcpSocket":{"$ref":"#/definitions/containerAppProbeTcpSocket","nullable":true,"metadata":{"description":"Optional. TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported."}},"terminationGracePeriodSeconds":{"type":"int","nullable":true,"metadata":{"description":"Optional. Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod''s terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)."}},"timeoutSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. Number of seconds after which the probe times out. Defaults to 1 second."}},"type":{"type":"string","allowedValues":["Liveness","Readiness","Startup"],"nullable":true,"metadata":{"description":"Optional. The type of probe."}}}},"corsPolicyType":{"type":"object","properties":{"allowCredentials":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Switch to determine whether the resource allows credentials."}},"allowedHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-headers header."}},"allowedMethods":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-methods header."}},"allowedOrigins":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-origins header."}},"exposeHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-expose-headers header."}},"maxAge":{"type":"int","nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-max-age header."}}},"nullable":true},"containerAppProbeHttpGet":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to. Defaults to the pod IP."}},"httpHeaders":{"type":"array","items":{"$ref":"#/definitions/containerAppProbeHttpGetHeadersItem"},"nullable":true,"metadata":{"description":"Optional. HTTP headers to set in the request."}},"path":{"type":"string","metadata":{"description":"Required. Path to access on the HTTP server."}},"port":{"type":"int","metadata":{"description":"Required. Name or number of the port to access on the container."}},"scheme":{"type":"string","allowedValues":["HTTP","HTTPS"],"nullable":true,"metadata":{"description":"Optional. Scheme to use for connecting to the host. Defaults to HTTP."}}}},"containerAppProbeHttpGetHeadersItem":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Name of the header."}},"value":{"type":"string","metadata":{"description":"Required. Value of the header."}}}},"containerAppProbeTcpSocket":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to, defaults to the pod IP."}},"port":{"type":"int","minValue":1,"maxValue":65535,"metadata":{"description":"Required. Number of the port to access on the container. Name must be an IANA_SVC_NAME."}}}},"volumeMount":{"type":"object","properties":{"mountPath":{"type":"string","metadata":{"description":"Required. Path within the container at which the volume should be mounted.Must not contain '':''."}},"subPath":{"type":"string","nullable":true,"metadata":{"description":"Optional. Path within the volume from which the container''s volume should be mounted. Defaults to \"\" (volume''s root)."}},"volumeName":{"type":"string","metadata":{"description":"Required. This must match the Name of a Volume."}}}}},"parameters":{"name":{"type":"string","metadata":{"description":"Required. Name of the Container App."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Optional. Location for all Resources."}},"disableIngress":{"type":"bool","defaultValue":false,"metadata":{"description":"Optional. Bool to disable all ingress traffic for the container app."}},"ingressExternal":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if the App exposes an external HTTP endpoint."}},"clientCertificateMode":{"type":"string","defaultValue":"ignore","allowedValues":["accept","ignore","require"],"metadata":{"description":"Optional. Client certificate mode for mTLS."}},"corsPolicy":{"$ref":"#/definitions/corsPolicyType","metadata":{"description":"Optional. Object userd to configure CORS policy."}},"stickySessionsAffinity":{"type":"string","defaultValue":"none","allowedValues":["none","sticky"],"metadata":{"description":"Optional. Bool indicating if the Container App should enable session affinity."}},"ingressTransport":{"type":"string","defaultValue":"auto","allowedValues":["auto","http","http2","tcp"],"metadata":{"description":"Optional. Ingress transport protocol."}},"ingressAllowInsecure":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections."}},"ingressTargetPort":{"type":"int","defaultValue":80,"metadata":{"description":"Optional. Target Port in containers for traffic from ingress."}},"scaleMaxReplicas":{"type":"int","defaultValue":10,"metadata":{"description":"Optional. Maximum number of container replicas. Defaults to 10 if not set."}},"scaleMinReplicas":{"type":"int","defaultValue":3,"metadata":{"description":"Optional. Minimum number of container replicas. Defaults to 3 if not set."}},"scaleRules":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Scaling rules."}},"activeRevisionsMode":{"type":"string","defaultValue":"Single","allowedValues":["Multiple","Single"],"metadata":{"description":"Optional. Controls how active revisions are handled for the Container app."}},"environmentResourceId":{"type":"string","metadata":{"description":"Required. Resource ID of environment."}},"lock":{"$ref":"#/definitions/lockType","metadata":{"description":"Optional. The lock settings of the service."}},"tags":{"type":"object","nullable":true,"metadata":{"description":"Optional. Tags of the resource."}},"registries":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Collection of private container registry credentials for containers used by the Container app."}},"managedIdentities":{"$ref":"#/definitions/managedIdentitiesType","metadata":{"description":"Optional. The managed identity definition for this resource."}},"roleAssignments":{"$ref":"#/definitions/roleAssignmentType","metadata":{"description":"Optional. Array of role assignments to create."}},"enableTelemetry":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Enable/Disable usage telemetry for module."}},"customDomains":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Custom domain bindings for Container App hostnames."}},"exposedPort":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Exposed Port in containers for TCP traffic from ingress."}},"ipSecurityRestrictions":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Rules to restrict incoming IP address."}},"trafficLabel":{"type":"string","defaultValue":"label-1","metadata":{"description":"Optional. Associates a traffic label with a revision. Label name should be consist of lower case alphanumeric characters or dashes."}},"trafficLatestRevision":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Indicates that the traffic weight belongs to a latest stable revision."}},"trafficRevisionName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Name of a revision."}},"trafficWeight":{"type":"int","defaultValue":100,"metadata":{"description":"Optional. Traffic weight assigned to a revision."}},"dapr":{"type":"object","defaultValue":{},"metadata":{"description":"Optional. Dapr configuration for the Container App."}},"maxInactiveRevisions":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Max inactive revisions a Container App can have."}},"containers":{"type":"array","items":{"$ref":"#/definitions/container"},"metadata":{"description":"Required. List of container definitions for the Container App."}},"initContainersTemplate":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of specialized containers that run before app containers."}},"secrets":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Optional. The secrets of the Container App."}},"revisionSuffix":{"type":"string","defaultValue":"","metadata":{"description":"Optional. User friendly suffix that is appended to the revision name."}},"volumes":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of volume definitions for the Container App."}},"workloadProfileName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Workload profile name to pin for container app execution."}}},"variables":{"copy":[{"name":"formattedRoleAssignments","count":"[length(coalesce(parameters(''roleAssignments''), createArray()))]","input":"[union(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')], createObject(''roleDefinitionId'', coalesce(tryGet(variables(''builtInRoleNames''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName), if(contains(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, ''/providers/Microsoft.Authorization/roleDefinitions/''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName)))))]"}],"secretList":"[if(not(empty(parameters(''secrets''))), parameters(''secrets'').secureList, createArray())]","formattedUserAssignedIdentities":"[reduce(map(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createArray()), lambda(''id'', createObject(format(''{0}'', lambdaVariables(''id'')), createObject()))), createObject(), lambda(''cur'', ''next'', union(lambdaVariables(''cur''), lambdaVariables(''next''))))]","identity":"[if(not(empty(parameters(''managedIdentities''))), createObject(''type'', if(coalesce(tryGet(parameters(''managedIdentities''), ''systemAssigned''), false()), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''SystemAssigned,UserAssigned'', ''SystemAssigned''), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''UserAssigned'', ''None'')), ''userAssignedIdentities'', if(not(empty(variables(''formattedUserAssignedIdentities''))), variables(''formattedUserAssignedIdentities''), null())), null())]","builtInRoleNames":{"ContainerApp Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b'')]","Contributor":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]","Owner":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''8e3af657-a8ff-443c-a75c-2fe8c4bcb635'')]","Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''acdd72a7-3385-48ef-bd42-f606fba81ae7'')]","Role Based Access Control Administrator (Preview)":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''f58310d9-a9f6-439a-9e8d-f62e7b41a168'')]","User Access Administrator":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''18d7d88d-d35e-4fb5-a5c3-7773c20a72d9'')]"}},"resources":{"avmTelemetry":{"condition":"[parameters(''enableTelemetry'')]","type":"Microsoft.Resources/deployments","apiVersion":"2024-03-01","name":"[format(''46d3xbcp.res.app-containerapp.{0}.{1}'', replace(''0.8.0'', ''.'', ''-''), substring(uniqueString(deployment().name, parameters(''location'')), 0, 4))]","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[],"outputs":{"telemetry":{"type":"String","value":"For more information, see https://aka.ms/avm/TelemetryInfo"}}}}},"containerApp":{"type":"Microsoft.App/containerApps","apiVersion":"2023-05-01","name":"[parameters(''name'')]","tags":"[parameters(''tags'')]","location":"[parameters(''location'')]","identity":"[variables(''identity'')]","properties":{"environmentId":"[parameters(''environmentResourceId'')]","configuration":{"activeRevisionsMode":"[parameters(''activeRevisionsMode'')]","dapr":"[if(not(empty(parameters(''dapr''))), parameters(''dapr''), null())]","ingress":"[if(parameters(''disableIngress''), null(), createObject(''allowInsecure'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''ingressAllowInsecure''), false()), ''customDomains'', if(not(empty(parameters(''customDomains''))), parameters(''customDomains''), null()), ''corsPolicy'', if(and(not(equals(parameters(''corsPolicy''), null())), not(equals(parameters(''ingressTransport''), ''tcp''))), createObject(''allowCredentials'', coalesce(tryGet(parameters(''corsPolicy''), ''allowCredentials''), false()), ''allowedHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedHeaders''), createArray()), ''allowedMethods'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedMethods''), createArray()), ''allowedOrigins'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedOrigins''), createArray()), ''exposeHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''exposeHeaders''), createArray()), ''maxAge'', tryGet(parameters(''corsPolicy''), ''maxAge'')), null()), ''clientCertificateMode'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''clientCertificateMode''), null()), ''exposedPort'', parameters(''exposedPort''), ''external'', parameters(''ingressExternal''), ''ipSecurityRestrictions'', if(not(empty(parameters(''ipSecurityRestrictions''))), parameters(''ipSecurityRestrictions''), null()), ''targetPort'', parameters(''ingressTargetPort''), ''stickySessions'', createObject(''affinity'', parameters(''stickySessionsAffinity'')), ''traffic'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), createArray(createObject(''label'', parameters(''trafficLabel''), ''latestRevision'', parameters(''trafficLatestRevision''), ''revisionName'', parameters(''trafficRevisionName''), ''weight'', parameters(''trafficWeight''))), null()), ''transport'', parameters(''ingressTransport'')))]","maxInactiveRevisions":"[parameters(''maxInactiveRevisions'')]","registries":"[if(not(empty(parameters(''registries''))), parameters(''registries''), null())]","secrets":"[variables(''secretList'')]"},"template":{"containers":"[parameters(''containers'')]","initContainers":"[if(not(empty(parameters(''initContainersTemplate''))), parameters(''initContainersTemplate''), null())]","revisionSuffix":"[parameters(''revisionSuffix'')]","scale":{"maxReplicas":"[parameters(''scaleMaxReplicas'')]","minReplicas":"[parameters(''scaleMinReplicas'')]","rules":"[if(not(empty(parameters(''scaleRules''))), parameters(''scaleRules''), null())]"},"volumes":"[if(not(empty(parameters(''volumes''))), parameters(''volumes''), null())]"},"workloadProfileName":"[parameters(''workloadProfileName'')]"}},"containerApp_lock":{"condition":"[and(not(empty(coalesce(parameters(''lock''), createObject()))), not(equals(tryGet(parameters(''lock''), ''kind''), ''None'')))]","type":"Microsoft.Authorization/locks","apiVersion":"2020-05-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(parameters(''lock''), ''name''), format(''lock-{0}'', parameters(''name'')))]","properties":{"level":"[coalesce(tryGet(parameters(''lock''), ''kind''), '''')]","notes":"[if(equals(tryGet(parameters(''lock''), ''kind''), ''CanNotDelete''), ''Cannot delete resource or child resources.'', ''Cannot delete or modify the resource or child resources.'')]"},"dependsOn":["containerApp"]},"containerApp_roleAssignments":{"copy":{"name":"containerApp_roleAssignments","count":"[length(coalesce(variables(''formattedRoleAssignments''), createArray()))]"},"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''name''), guid(resourceId(''Microsoft.App/containerApps'', parameters(''name'')), coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId, coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId))]","properties":{"roleDefinitionId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId]","principalId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId]","description":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''description'')]","principalType":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''principalType'')]","condition":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition'')]","conditionVersion":"[if(not(empty(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition''))), coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''conditionVersion''), ''2.0''), null())]","delegatedManagedIdentityResourceId":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''delegatedManagedIdentityResourceId'')]"},"dependsOn":["containerApp"]}},"outputs":{"resourceId":{"type":"string","metadata":{"description":"The resource ID of the Container App."},"value":"[resourceId(''Microsoft.App/containerApps'', parameters(''name''))]"},"fqdn":{"type":"string","metadata":{"description":"The configuration of ingress fqdn."},"value":"[if(parameters(''disableIngress''), ''IngressDisabled'', reference(''containerApp'').configuration.ingress.fqdn)]"},"resourceGroupName":{"type":"string","metadata":{"description":"The name of the resource group the Container App was deployed into."},"value":"[resourceGroup().name]"},"name":{"type":"string","metadata":{"description":"The name of the Container App."},"value":"[parameters(''name'')]"},"systemAssignedMIPrincipalId":{"type":"string","metadata":{"description":"The principal ID of the system assigned identity."},"value":"[coalesce(tryGet(tryGet(reference(''containerApp'', ''2023-05-01'', ''full''), ''identity''), ''principalId''), '''')]"},"location":{"type":"string","metadata":{"description":"The location the resource was deployed into."},"value":"[reference(''containerApp'', ''2023-05-01'', ''full'').location]"}}}}}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Resources/deployments'', ''web''), ''2025-04-01'').outputs.fqdn.value)]"}}}}}' form: {} headers: Accept: @@ -1858,30 +10757,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "27575" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940?api-version=2021-04-01 - method: GET + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web-1775758879?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2905 + content_length: 1678 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:48Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:14:23.810618Z","duration":"PT4M35.5467466S","correlationId":"cef3eca015989286764f3d735d335276","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w29f862"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"critjx2xx5j5ka6"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-itjx2xx5j5ka6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"critjx2xx5j5ka6.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6/providers/Microsoft.Authorization/roleAssignments/0132a90f-753d-51a5-93e5-20867e9cc237"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web-1775758879","name":"web-1775758879","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12728900275957388763","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"crpogq2w7bplv2u"},"containerAppsEnvironmentName":{"type":"String","value":"cae-pogq2w7bplv2u"},"imageName":{"type":"String","value":"crpogq2w7bplv2u.azurecr.io/containerapp/web-azdtest-d209f3e:azd-deploy-1775758879"},"identityId":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T18:23:40.8541239Z","duration":"PT0.0003989S","correlationId":"efe6ae70e896d5555e52ecff29e5ddde","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"crpogq2w7bplv2u","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web-1775758879/operationStatuses/08584258478646161270?api-version=2021-04-01&t=639113558211509223&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=mgy3hNMqQAuWoEkG68wk5n36HxjF9Q7IoZ-HdcRzg__aNrWxwc9rN6ZcRZ-akM_HZmAkGOGZ_mUy7gPbwIxizUpKNMfrNQccX-5tpJiVIpkWlF_6Alr62kVNl-1QF8NBl8yuv7DnD3COtxBxkb_ZrvL7jekkEJUp-L_VTvB34FrGkTiyWTBVCnYSwairZ1eoUVbtGO7v-BkQAfiBwb13uI3SsLj-vjmGAG3CRmJmGr5jE4mNwuI1RgP_R2tJZqBh0HVuo_5pJIjNODWfbSvGDIMWdfUfAC3DkGkAwT2UExLpUVGzeQ2KBrfBpoERJUbw75CVYO1GF4a2IIc1fOmX-w&h=B9TdZhyL-kyPFr-i59LqiAuyVy1k0OGdTXuZUA-LLoE Cache-Control: - no-cache Content-Length: - - "2905" + - "1678" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:08 GMT + - Thu, 09 Apr 2026 18:23:40 GMT Expires: - "-1" Pragma: @@ -1893,21 +10798,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - efe6ae70e896d5555e52ecff29e5ddde + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 21c0f796-a4d8-4874-9013-a64a2fadbd9c + - 8ed16b88-807d-49a6-91a2-2ef5c9f6c39c X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001608Z:21c0f796-a4d8-4874-9013-a64a2fadbd9c + - EASTUS2:20260409T182341Z:8ed16b88-807d-49a6-91a2-2ef5c9f6c39c X-Msedge-Ref: - - 'Ref A: 8197A0BC4DCF4651B2F98352B45D4412 Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:08Z' - status: 200 OK - code: 200 - duration: 436.8045ms - - id: 28 + - 'Ref A: 67CF90479D6D4E37A1F23E2C838F78C8 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:23:40Z' + status: 201 Created + code: 201 + duration: 750.317083ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1921,17 +10828,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/resources?api-version=2021-04-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web-1775758879/operationStatuses/08584258478646161270?api-version=2021-04-01&t=639113558211509223&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=mgy3hNMqQAuWoEkG68wk5n36HxjF9Q7IoZ-HdcRzg__aNrWxwc9rN6ZcRZ-akM_HZmAkGOGZ_mUy7gPbwIxizUpKNMfrNQccX-5tpJiVIpkWlF_6Alr62kVNl-1QF8NBl8yuv7DnD3COtxBxkb_ZrvL7jekkEJUp-L_VTvB34FrGkTiyWTBVCnYSwairZ1eoUVbtGO7v-BkQAfiBwb13uI3SsLj-vjmGAG3CRmJmGr5jE4mNwuI1RgP_R2tJZqBh0HVuo_5pJIjNODWfbSvGDIMWdfUfAC3DkGkAwT2UExLpUVGzeQ2KBrfBpoERJUbw75CVYO1GF4a2IIc1fOmX-w&h=B9TdZhyL-kyPFr-i59LqiAuyVy1k0OGdTXuZUA-LLoE method: GET response: proto: HTTP/2.0 @@ -1939,18 +10844,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2571 + content_length: 22 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6","name":"mi-itjx2xx5j5ka6","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6","name":"log-itjx2xx5j5ka6","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6","name":"critjx2xx5j5ka6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:09:57.4564556Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:09:57.4564556Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6","name":"cae-itjx2xx5j5ka6","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:10:19.5246216Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:10:19.5246216Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6":{"principalId":"c5933e51-002b-4b6f-8f82-60468a93cee7","clientId":"cebc542f-8462-476a-a0a2-9f6cf1401e52"}}},"tags":{"azd-env-name":"azdtest-w29f862","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:14:57.6952468Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:14:57.6952468Z"}}]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "2571" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:08 GMT + - Thu, 09 Apr 2026 18:24:40 GMT Expires: - "-1" Pragma: @@ -1962,21 +10867,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 16671f95-1040-4eb7-8c24-270bdbe044d1 + - 683aaa76-0ff9-4c48-913f-8694646c2395 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001608Z:16671f95-1040-4eb7-8c24-270bdbe044d1 + - EASTUS2:20260409T182441Z:683aaa76-0ff9-4c48-913f-8694646c2395 X-Msedge-Ref: - - 'Ref A: FB4919B1E9C948F79F1E50536AA0020F Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:08Z' + - 'Ref A: EFDFCD963E474796876E8846F0944A04 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:41Z' status: 200 OK code: 200 - duration: 121.8371ms - - id: 29 + duration: 90.61325ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1990,17 +10895,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armoperationalinsights/v2.0.2 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6?api-version=2025-07-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web-1775758879?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2008,28 +10911,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 937 + content_length: 1953 uncompressed: false - body: '{"properties":{"customerId":"ca75654a-c3c3-4cb3-932f-427f79e02dd3","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-01-23T00:09:57.6382746Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-01-23T13:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-01-23T00:09:57.6382746Z","modifiedDate":"2026-01-23T00:10:09.8670258Z"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6","name":"log-itjx2xx5j5ka6","type":"Microsoft.OperationalInsights/workspaces","etag":"\"4001c506-0000-0200-0000-6972bc610000\""}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web-1775758879","name":"web-1775758879","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12728900275957388763","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"crpogq2w7bplv2u"},"containerAppsEnvironmentName":{"type":"String","value":"cae-pogq2w7bplv2u"},"imageName":{"type":"String","value":"crpogq2w7bplv2u.azurecr.io/containerapp/web-azdtest-d209f3e:azd-deploy-1775758879"},"identityId":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T18:24:19.265293Z","duration":"PT38.4111691S","correlationId":"efe6ae70e896d5555e52ecff29e5ddde","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"crpogq2w7bplv2u","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"websitE_URL":{"type":"String","value":"https://web.grayglacier-1da9d4b8.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/containerApps/web"}]}}' headers: - Access-Control-Allow-Origin: - - '*' - Api-Supported-Versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 Cache-Control: - no-cache Content-Length: - - "937" + - "1953" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:08 GMT + - Thu, 09 Apr 2026 18:24:40 GMT Expires: - "-1" Pragma: - no-cache - Request-Context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -2037,21 +10934,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 038c7d88-36b4-41af-8b70-35dfc3738fbd + - 09bcef53-c19c-44cf-a220-cb9168a36a5e X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001609Z:038c7d88-36b4-41af-8b70-35dfc3738fbd + - EASTUS2:20260409T182441Z:09bcef53-c19c-44cf-a220-cb9168a36a5e X-Msedge-Ref: - - 'Ref A: D504DC46F8BD4B2287D1CD1689B4084F Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:08Z' + - 'Ref A: 9C5FD37791D24AB1A040698B590CF373 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:41Z' status: 200 OK code: 200 - duration: 116.5282ms - - id: 30 + duration: 88.224125ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2072,61 +10969,61 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armoperationalinsights/v2.0.2 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armappcontainers/v3.1.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6?api-version=2025-07-01&force=true - method: DELETE + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/containerApps/web?api-version=2025-01-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 3015 uncompressed: false - body: "" + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/containerapps/web","name":"web","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-d209f3e","azd-service-name":"web"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:23:42.7663938","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:23:42.7663938"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u","environmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u","workloadProfileName":null,"outboundIpAddresses":["4.150.107.255"],"latestRevisionName":"web--d1hkymr","latestReadyRevisionName":"web--d1hkymr","latestRevisionFqdn":"web--d1hkymr.grayglacier-1da9d4b8.eastus2.azurecontainerapps.io","customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"web.grayglacier-1da9d4b8.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true,"label":"label-1"}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":"Ignore","stickySessions":{"affinity":"none"},"additionalPortMappings":null},"registries":[{"server":"crpogq2w7bplv2u.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}],"dapr":null,"runtime":null,"maxInactiveRevisions":0,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"crpogq2w7bplv2u.azurecr.io/containerapp/web-azdtest-d209f3e:azd-deploy-1775758879","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/containerApps/web/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u":{"principalId":"6da19215-3b2a-44c9-9725-baea34b56bb2","clientId":"54db62cc-193f-4d56-a18a-8b9c9115707d"}}}}' headers: - Access-Control-Allow-Origin: - - '*' Api-Supported-Versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview Cache-Control: - no-cache Content-Length: - - "0" + - "3015" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:09 GMT + - Thu, 09 Apr 2026 18:24:41 GMT Expires: - "-1" Pragma: - no-cache - Request-Context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/eastus2/08a77a5f-b421-4437-87cd-0c58c6a300fc - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "799" - X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "11999" + - efe6ae70e896d5555e52ecff29e5ddde + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 77d3745c-5551-478c-bea3-2f624b4279c6 + - 25865562-5832-46c5-894b-6e03ca8214ba X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001610Z:77d3745c-5551-478c-bea3-2f624b4279c6 + - EASTUS2:20260409T182441Z:25865562-5832-46c5-894b-6e03ca8214ba X-Msedge-Ref: - - 'Ref A: 83156D2F42F84ABFBD4339EE0A5122BC Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:09Z' + - 'Ref A: DCB9C503E60D41708A6C81C3CBE1D22E Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:41Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 911.6183ms - - id: 31 + duration: 250.422917ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2147,10 +11044,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940?api-version=2021-04-01 + - efe6ae70e896d5555e52ecff29e5ddde + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d209f3e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2158,18 +11055,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2905 + content_length: 325 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:48Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:14:23.810618Z","duration":"PT4M35.5467466S","correlationId":"cef3eca015989286764f3d735d335276","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w29f862"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"critjx2xx5j5ka6"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-itjx2xx5j5ka6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"critjx2xx5j5ka6.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6/providers/Microsoft.Authorization/roleAssignments/0132a90f-753d-51a5-93e5-20867e9cc237"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6"}]}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","name":"rg-azdtest-d209f3e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","DeleteAfter":"2026-04-09T19:21:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2905" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:09 GMT + - Thu, 09 Apr 2026 18:24:41 GMT Expires: - "-1" Pragma: @@ -2181,21 +11078,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - efe6ae70e896d5555e52ecff29e5ddde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9a57d56f-f07a-40dc-b1c9-402b4b993f0d + - ad3248e0-ed8c-452c-a2b7-28392846b776 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001610Z:9a57d56f-f07a-40dc-b1c9-402b4b993f0d + - EASTUS:20260409T182442Z:ad3248e0-ed8c-452c-a2b7-28392846b776 X-Msedge-Ref: - - 'Ref A: 2EFE0B25AF1648348410BC8F592FEAAD Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:10Z' + - 'Ref A: A1CCCF8F23534167AE2C838CFAC642E6 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:42Z' status: 200 OK code: 200 - duration: 185.4185ms - - id: 32 + duration: 158.762459ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: web.grayglacier-1da9d4b8.eastus2.azurecontainerapps.io + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - Go-http-client/1.1 + url: https://web.grayglacier-1da9d4b8.eastus2.azurecontainerapps.io:443/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: Hello, `azd`. + headers: + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:24:42 GMT + Server: + - Kestrel + status: 200 OK + code: 200 + duration: 246.583917ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2216,10 +11154,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/resources?api-version=2021-04-01 + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2227,18 +11165,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2267 + content_length: 957000 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6","name":"mi-itjx2xx5j5ka6","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6","name":"critjx2xx5j5ka6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:09:57.4564556Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:09:57.4564556Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6","name":"cae-itjx2xx5j5ka6","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:10:19.5246216Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:10:19.5246216Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6":{"principalId":"c5933e51-002b-4b6f-8f82-60468a93cee7","clientId":"cebc542f-8462-476a-a0a2-9f6cf1401e52"}}},"tags":{"azd-env-name":"azdtest-w29f862","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:14:57.6952468Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:14:57.6952468Z"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","location":"eastus2","name":"azdtest-d209f3e-1775758879","properties":{"correlationId":"b9ddf6d835f27ca94999eee72f0a6fbc","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","resourceName":"rg-azdtest-d209f3e","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT1M3.9913627S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u/providers/Microsoft.Authorization/roleAssignments/7f24ecc4-6b4b-55c4-968d-c46470d08ae7"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u"}],"outputs":{"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-pogq2w7bplv2u"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crpogq2w7bplv2u.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crpogq2w7bplv2u"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-04-09T19:21:44Z"},"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"3439496075272322378","timestamp":"2026-04-09T18:22:48.1730293Z"},"tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2267" + - "957000" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:09 GMT + - Thu, 09 Apr 2026 18:24:47 GMT Expires: - "-1" Pragma: @@ -2250,21 +11188,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - 938f78573a3c6178c039187fb6f14f59 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 486ad5e8-327b-466c-94bf-653c65134278 + - 30cd5f1d-e831-421f-acb4-96cf69983eba X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001610Z:486ad5e8-327b-466c-94bf-653c65134278 + - EASTUS2:20260409T182448Z:30cd5f1d-e831-421f-acb4-96cf69983eba X-Msedge-Ref: - - 'Ref A: 84DEF3F411964AB796EEE1E7F4BF07CB Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:10Z' + - 'Ref A: 3DCAFE1EAFCD4279936B066136E10361 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:44Z' status: 200 OK code: 200 - duration: 232.1876ms - - id: 33 + duration: 4.187514541s + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2278,42 +11216,38 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w29f862?api-version=2021-04-01 - method: DELETE + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 883295 uncompressed: false - body: "" + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "883295" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:10 GMT + - Thu, 09 Apr 2026 18:24:51 GMT Expires: - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMjlGODYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639047246493100993&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=h19h-2y-mFmD9HH7W7Q0pVbNL4GgqQ1QuWGGylpR5cvG2OHrjQ-4u8-bR-UDGucEY3OkP4QHW9_EOfE06dThztlBEwITWd10Ksx3IDjdeNvLZxq9crbLpuuBS0Sf_66_D8v7uEwfiOm1UN61m7W03hxBuk4XtVO5aqEOe9uRHVpIYlyM7To9e7vS5qmcyp9xmwi4p2RaVXfullP726Zsbq-UC-J1gzlwRzlZjU7qyY65bQ7cQ3-GmvtbJyyw4tHzkdlYyPR9RpLHY2J-ewupAu6UsLSUmqAZggfEdumuk0o6W-Q2JMPwORitpYqAcvM8Y7wUFnFlfK5eAsRlgJG9xg&h=LfktJo53TFu_8QdO9YNrTfN9cDudt0kw3dP1EWgjEgU Pragma: - no-cache - Retry-After: - - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -2321,21 +11255,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "799" - X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "11999" + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 9461fd2f-b50e-498b-80cc-fe54c4ef9673 + - 051ba8f1-a993-404c-8930-e664d5771508 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001610Z:9461fd2f-b50e-498b-80cc-fe54c4ef9673 + - EASTUS:20260409T182452Z:051ba8f1-a993-404c-8930-e664d5771508 X-Msedge-Ref: - - 'Ref A: EB4084F84CA24A2EBAAAE34982D41D8A Ref B: MWH011020807029 Ref C: 2026-01-23T00:16:10Z' - status: 202 Accepted - code: 202 - duration: 239.0342ms - - id: 34 + - 'Ref A: F0379FB1FE634AC49AFFE2473205C0A0 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:48Z' + status: 200 OK + code: 200 + duration: 3.819110542s + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2354,10 +11288,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMjlGODYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639047246493100993&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=h19h-2y-mFmD9HH7W7Q0pVbNL4GgqQ1QuWGGylpR5cvG2OHrjQ-4u8-bR-UDGucEY3OkP4QHW9_EOfE06dThztlBEwITWd10Ksx3IDjdeNvLZxq9crbLpuuBS0Sf_66_D8v7uEwfiOm1UN61m7W03hxBuk4XtVO5aqEOe9uRHVpIYlyM7To9e7vS5qmcyp9xmwi4p2RaVXfullP726Zsbq-UC-J1gzlwRzlZjU7qyY65bQ7cQ3-GmvtbJyyw4tHzkdlYyPR9RpLHY2J-ewupAu6UsLSUmqAZggfEdumuk0o6W-Q2JMPwORitpYqAcvM8Y7wUFnFlfK5eAsRlgJG9xg&h=LfktJo53TFu_8QdO9YNrTfN9cDudt0kw3dP1EWgjEgU + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2365,16 +11299,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 515084 uncompressed: false - body: "" + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "515084" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:24:23 GMT + - Thu, 09 Apr 2026 18:24:53 GMT Expires: - "-1" Pragma: @@ -2386,21 +11322,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - 938f78573a3c6178c039187fb6f14f59 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2473c50b-4ee7-46df-84b6-a73a3dc67617 + - fda39a5b-4e88-4729-9c55-8d3ce4175429 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T002424Z:2473c50b-4ee7-46df-84b6-a73a3dc67617 + - EASTUS:20260409T182454Z:fda39a5b-4e88-4729-9c55-8d3ce4175429 X-Msedge-Ref: - - 'Ref A: FAA7C892B3CF4AFFA63D500138E71615 Ref B: MWH011020807029 Ref C: 2026-01-23T00:24:24Z' + - 'Ref A: 1DABAB3373F64CE3B44129144EA6E09F Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:52Z' status: 200 OK code: 200 - duration: 432.8828ms - - id: 35 + duration: 1.738003667s + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2414,17 +11350,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940?api-version=2021-04-01 + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2432,18 +11366,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2905 + content_length: 415580 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w29f862","azd-layer-name":"","azd-provision-param-hash":"44b5e4d2f6a0994ecd5b029fca59b10578d7433a7c5dcb682e304873fe20bea8"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w29f862"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:48Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:14:23.810618Z","duration":"PT4M35.5467466S","correlationId":"cef3eca015989286764f3d735d335276","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w29f862"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"critjx2xx5j5ka6"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-itjx2xx5j5ka6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"critjx2xx5j5ka6.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.App/managedEnvironments/cae-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ContainerRegistry/registries/critjx2xx5j5ka6/providers/Microsoft.Authorization/roleAssignments/0132a90f-753d-51a5-93e5-20867e9cc237"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-itjx2xx5j5ka6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w29f862/providers/Microsoft.OperationalInsights/workspaces/log-itjx2xx5j5ka6"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2905" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:24:24 GMT + - Thu, 09 Apr 2026 18:24:54 GMT Expires: - "-1" Pragma: @@ -2455,70 +11389,131 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - 938f78573a3c6178c039187fb6f14f59 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5387b530-ccb4-49d6-8828-0d3265d58db1 + - 00ff8291-21dd-4ac8-9d07-0eb3e3076f6a X-Ms-Routing-Request-Id: - - WESTUS2:20260123T002425Z:5387b530-ccb4-49d6-8828-0d3265d58db1 + - EASTUS:20260409T182455Z:00ff8291-21dd-4ac8-9d07-0eb3e3076f6a X-Msedge-Ref: - - 'Ref A: 58DA636B9807458A9833665BD436D036 Ref B: MWH011020807029 Ref C: 2026-01-23T00:24:24Z' + - 'Ref A: 9DEEA13CEE954917AC710D9143A2DA54 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:54Z' status: 200 OK code: 200 - duration: 376.6664ms - - id: 36 + duration: 1.272350625s + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 346 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w29f862"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "346" + - "136970" Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:24:55 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 8a11e819-ebcf-4f39-9917-aaeb8bde36a0 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T182456Z:8a11e819-ebcf-4f39-9917-aaeb8bde36a0 + X-Msedge-Ref: + - 'Ref A: 456B57BB2B3A424AB14A031CBF8250C5 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:55Z' + status: 200 OK + code: 200 + duration: 788.227041ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940?api-version=2021-04-01 - method: PUT + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879?api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 2904 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w29f862"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-23T00:24:25.7575032Z","duration":"PT0.0003347S","correlationId":"10344ad84b5429ed148e665d68346ef0","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T19:21:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T18:22:48.1730293Z","duration":"PT1M3.9913627S","correlationId":"b9ddf6d835f27ca94999eee72f0a6fbc","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d209f3e"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crpogq2w7bplv2u"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-pogq2w7bplv2u"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crpogq2w7bplv2u.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u/providers/Microsoft.Authorization/roleAssignments/7f24ecc4-6b4b-55c4-968d-c46470d08ae7"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u"}]}}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940/operationStatuses/08584324790197193525?api-version=2021-04-01&t=639047246686956828&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=cHmBs4t7oRK_xyxgAkT-0kv_07mIy5boR6kvtXDHbs9Dd0qijdgUHgldR8HkbrhxRmz9z42PjD2Ci2cT0OBOopKk54bZNu3iKiVC0j_LoV9rmeT1hoaK2k3qOA9pNC_n7FJFy8P5ywajulRrbKOGBsnzjpqh1KJ6jUeLQMgmbQWEoOKdJWugcPbPbE94f3CjBpTcn8dJPlgqOk-gTLLf5bz1x0weydBbdjuIzspVWzSVDpXTmu65jjLeunw6YITkbHeBHNTxRFgh1asdO3AiCBZGjWoHeQ_AGyxjRetNYjkF3DEqTlykG0wPinWEzEwyNve911Zshf5SnHdlMvSnRw&h=S0NGeLLoDJU1Vwht_W9d4Df7omCPLVUT7TJea5Bfmoc Cache-Control: - no-cache Content-Length: - - "570" + - "2904" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:24:27 GMT + - Thu, 09 Apr 2026 18:24:55 GMT Expires: - "-1" Pragma: @@ -2530,23 +11525,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - X-Ms-Deployment-Engine-Version: - - 1.568.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 04e07055-451a-451d-88ac-261ea9b74748 + - 3df523cc-b8f7-43f7-9c9d-e42097abadfd X-Ms-Routing-Request-Id: - - WESTUS2:20260123T002428Z:04e07055-451a-451d-88ac-261ea9b74748 + - EASTUS2:20260409T182456Z:3df523cc-b8f7-43f7-9c9d-e42097abadfd X-Msedge-Ref: - - 'Ref A: 088C6A9EA13946B6981CA7F176F21AFC Ref B: MWH011020807029 Ref C: 2026-01-23T00:24:25Z' + - 'Ref A: FD5A0922B78140A7BF4D747F9D42822E Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:56Z' status: 200 OK code: 200 - duration: 3.5659229s - - id: 37 + duration: 85.597584ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2560,15 +11553,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940/operationStatuses/08584324790197193525?api-version=2021-04-01&t=639047246686956828&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=cHmBs4t7oRK_xyxgAkT-0kv_07mIy5boR6kvtXDHbs9Dd0qijdgUHgldR8HkbrhxRmz9z42PjD2Ci2cT0OBOopKk54bZNu3iKiVC0j_LoV9rmeT1hoaK2k3qOA9pNC_n7FJFy8P5ywajulRrbKOGBsnzjpqh1KJ6jUeLQMgmbQWEoOKdJWugcPbPbE94f3CjBpTcn8dJPlgqOk-gTLLf5bz1x0weydBbdjuIzspVWzSVDpXTmu65jjLeunw6YITkbHeBHNTxRFgh1asdO3AiCBZGjWoHeQ_AGyxjRetNYjkF3DEqTlykG0wPinWEzEwyNve911Zshf5SnHdlMvSnRw&h=S0NGeLLoDJU1Vwht_W9d4Df7omCPLVUT7TJea5Bfmoc + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2576,18 +11571,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 2565 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u","name":"log-pogq2w7bplv2u","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u","name":"mi-pogq2w7bplv2u","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u","name":"crpogq2w7bplv2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:21:48.1310065Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:21:48.1310065Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u","name":"cae-pogq2w7bplv2u","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:22:09.1152313Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:22:09.1152313Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u":{"principalId":"6da19215-3b2a-44c9-9725-baea34b56bb2","clientId":"54db62cc-193f-4d56-a18a-8b9c9115707d"}}},"tags":{"azd-env-name":"azdtest-d209f3e","azd-service-name":"web"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:23:42.7663938Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:23:42.7663938Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "2565" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:24:58 GMT + - Thu, 09 Apr 2026 18:24:56 GMT Expires: - "-1" Pragma: @@ -2599,21 +11594,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - 938f78573a3c6178c039187fb6f14f59 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 054e62df-8eef-4890-a91a-935e09006ed5 + - 60bc26fa-fd7a-4638-a8ff-4623aa204e9f X-Ms-Routing-Request-Id: - - WESTUS2:20260123T002459Z:054e62df-8eef-4890-a91a-935e09006ed5 + - EASTUS2:20260409T182456Z:60bc26fa-fd7a-4638-a8ff-4623aa204e9f X-Msedge-Ref: - - 'Ref A: 51FA5E44EE7E47578A8172F8814B42C2 Ref B: MWH011020807029 Ref C: 2026-01-23T00:24:59Z' + - 'Ref A: D388528A6F344D36BEC524C769C5803C Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:56Z' status: 200 OK code: 200 - duration: 335.9135ms - - id: 38 + duration: 120.341792ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2627,15 +11622,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940?api-version=2021-04-01 + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u?api-version=2025-07-01 method: GET response: proto: HTTP/2.0 @@ -2643,22 +11640,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 937 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w29f862-1769126940","name":"azdtest-w29f862-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w29f862"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:24:29.144886Z","duration":"PT3.3873828S","correlationId":"10344ad84b5429ed148e665d68346ef0","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"properties":{"customerId":"cfcb33a9-8ac7-4d9c-8442-3863c22b4092","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-04-09T18:21:48.1066753Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-04-10T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-04-09T18:21:48.1066753Z","modifiedDate":"2026-04-09T18:22:00.5476183Z"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u","name":"log-pogq2w7bplv2u","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0b022e19-0000-0200-0000-69d7ee480000\""}' headers: + Access-Control-Allow-Origin: + - '*' + Api-Supported-Versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 Cache-Control: - no-cache Content-Length: - - "604" + - "937" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:24:59 GMT + - Thu, 09 Apr 2026 18:24:56 GMT Expires: - "-1" Pragma: - no-cache + Request-Context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -2666,21 +11669,9951 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10344ad84b5429ed148e665d68346ef0 + - 938f78573a3c6178c039187fb6f14f59 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f55442bb-07da-4bce-bf2c-9ae5e3130635 + - a07a2168-d63a-4f00-823c-56d42f54e94c X-Ms-Routing-Request-Id: - - WESTUS2:20260123T002500Z:f55442bb-07da-4bce-bf2c-9ae5e3130635 + - EASTUS2:20260409T182456Z:a07a2168-d63a-4f00-823c-56d42f54e94c X-Msedge-Ref: - - 'Ref A: 76349DD7AA7F46F5AA190ADF67B16080 Ref B: MWH011020807029 Ref C: 2026-01-23T00:24:59Z' + - 'Ref A: 394A0E4FFA244CEB9F98EF0D36D8E949 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:56Z' + status: 200 OK + code: 200 + duration: 119.733084ms + - id: 42 + 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-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u?api-version=2025-07-01&force=true + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Access-Control-Allow-Origin: + - '*' + Api-Supported-Versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/cae7b036-a63f-4eff-9be6-a278ac6d3cf6?api-version=2015-11-01-preview&t=639113558971486461&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=opW9aWtb26PITXJ1VcJrgkScf5-Hjbsurv_jYtpSijLLT_SVNb2NGkqnUo1gb-Qb5NnjwvdARDfb8PRDgIIEDd_AuSB9cLR8zTp83pD9JAWk79MsNoK403VcqyXKtjviaPHnZgt-UpXgusmttRzO_bYxHYPSlefyOIeso2X-RsfNel3-kqXUTD5Fxf1wPuszh7UpRd9cMXsC56s_4AShxBimnJZoGSBHJwnGd_xcNHyq6L9JMXe4yJfSXnxE5Ahr-BXah-vfOBaYltflJZq_Ca3DYFZaAo0I89j5D81_hBDW7Lts9jXgdZaPGz3uiky2SpLi-yI39d2GTRiLHsFl7g&h=MOlV9u6Rn8jLj5xSeaFBkvNzYsG1_9DwJDkFJ5qM2R8 + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 18:24:56 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u/operationresults/cae7b036-a63f-4eff-9be6-a278ac6d3cf6?api-version=2025-07-01&t=639113558971486461&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=0El2Fml5nQkGFDldTRmz5A0MREcJ5tuEF-aHVWC4P0lYT-JyLwg4bn76vJR5c2Fgq5ETA-6bBapYsu0W2thBkwaMOiopfQORt9GX09B6hL5sfbdYJX69sGmkKPJHEmD5ia4bsntfnPh6hiRla70QnWc00vWKeK1qHwAaz_4pCwsd3k0sd8zhK9XsdDvEvdnpjhhVws8l_lTB24ZGTa72pus7oNpXAdUVeCjT3kqyEoFUuh_syQQz-9GSidOIm2MqyzKSrkyO5j_Ua6EgY9ONcJ-KJzX-SXkq8f9u1r7SEO0fslavmF6Q97S-9qAB3Bn3daKuaTM2geLG8cRJ_wJw5g&h=dLaHTYSSRuidi9y_-jOmlD1ufhYbwzCK7-ZH8Cn4HV4 + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/e056a297-ea96-49ae-8537-8bbab527ba46 + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - d0300445-b324-4c43-affa-cff521e8e3b8 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T182457Z:d0300445-b324-4c43-affa-cff521e8e3b8 + X-Msedge-Ref: + - 'Ref A: EFE485DEDF7D4F5585C34E5FBAC24D8F Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:24:56Z' + status: 202 Accepted + code: 202 + duration: 236.7005ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/cae7b036-a63f-4eff-9be6-a278ac6d3cf6?api-version=2015-11-01-preview&t=639113558971486461&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=opW9aWtb26PITXJ1VcJrgkScf5-Hjbsurv_jYtpSijLLT_SVNb2NGkqnUo1gb-Qb5NnjwvdARDfb8PRDgIIEDd_AuSB9cLR8zTp83pD9JAWk79MsNoK403VcqyXKtjviaPHnZgt-UpXgusmttRzO_bYxHYPSlefyOIeso2X-RsfNel3-kqXUTD5Fxf1wPuszh7UpRd9cMXsC56s_4AShxBimnJZoGSBHJwnGd_xcNHyq6L9JMXe4yJfSXnxE5Ahr-BXah-vfOBaYltflJZq_Ca3DYFZaAo0I89j5D81_hBDW7Lts9jXgdZaPGz3uiky2SpLi-yI39d2GTRiLHsFl7g&h=MOlV9u6Rn8jLj5xSeaFBkvNzYsG1_9DwJDkFJ5qM2R8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 339 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/cae7b036-a63f-4eff-9be6-a278ac6d3cf6","name":"cae7b036-a63f-4eff-9be6-a278ac6d3cf6","status":"Succeeded","startTime":"2026-04-09T18:24:57.100079Z","endTime":"2026-04-09T18:25:02.4274694Z","properties":{}}' + headers: + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - no-cache + Content-Length: + - "339" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:25:16 GMT + Expires: + - "-1" + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/a9e96a04-e698-42f2-843a-4c2be865adc2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 21ef042a-77cf-4bd9-927a-dc0757ff0c5c + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T182517Z:21ef042a-77cf-4bd9-927a-dc0757ff0c5c + X-Msedge-Ref: + - 'Ref A: AF59C456F7E94460AE27E1514CE8C1F6 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:25:17Z' + status: 200 OK + code: 200 + duration: 82.568ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2904 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T19:21:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T18:22:48.1730293Z","duration":"PT1M3.9913627S","correlationId":"b9ddf6d835f27ca94999eee72f0a6fbc","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d209f3e"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crpogq2w7bplv2u"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-pogq2w7bplv2u"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crpogq2w7bplv2u.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u/providers/Microsoft.Authorization/roleAssignments/7f24ecc4-6b4b-55c4-968d-c46470d08ae7"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2904" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:25:16 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 79072ec7-8013-47c2-a85b-10d3e4c4ab16 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T182517Z:79072ec7-8013-47c2-a85b-10d3e4c4ab16 + X-Msedge-Ref: + - 'Ref A: 7432D76AE3DB4DBABC0DFE880E1B423D Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:25:17Z' + status: 200 OK + code: 200 + duration: 134.802041ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2261 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u","name":"mi-pogq2w7bplv2u","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u","name":"crpogq2w7bplv2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:21:48.1310065Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:21:48.1310065Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u","name":"cae-pogq2w7bplv2u","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:22:09.1152313Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:22:09.1152313Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u":{"principalId":"6da19215-3b2a-44c9-9725-baea34b56bb2","clientId":"54db62cc-193f-4d56-a18a-8b9c9115707d"}}},"tags":{"azd-env-name":"azdtest-d209f3e","azd-service-name":"web"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:23:42.7663938Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:23:42.7663938Z"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2261" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:25:16 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 2642c13c-d13b-4a84-b3c8-989c2d2fb6c1 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T182517Z:2642c13c-d13b-4a84-b3c8-989c2d2fb6c1 + X-Msedge-Ref: + - 'Ref A: 63199E364549474F8845A0310E7725AD Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:25:17Z' + status: 200 OK + code: 200 + duration: 106.936875ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d209f3e?api-version=2021-04-01 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 18:25:17 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREMjA5RjNFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113565684031013&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=EqWEfGjjJ2oxEuQd9wxSienuuSiSqGaYyjShADBgv2RNUrKIfO440JJvKBCrOR4eWFzjEmFvDKUROgvmxkzuC5Dvs_1Zclzzjb-0zm9OvgL5dSx4IVncRoHn4JwtdB9qdCl_s0deQVXdHgOq4SBj_JuxALiq8GpBarKfEnzSR1YqPDuJt7X62z10tkQq8OJT1l3IzgLJileRdr7bnegbr-i8_7iCkEL2rxlPvM7EtQ3aI_1HVfCd4k7RD8LiVLn4IHc7DjkS6gyX7hq9-zg44F_HRseHdnjimU9EjMHS29Iba5rPqRtkMyXlPhvgz4-yB3O9MrUOPCs8izXLhRIGSg&h=_C549wwWBYFwr3KBAAz-UPaJYTYbj0xS-xV7FaYhD1I + Pragma: + - no-cache + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - b6134460-bfd9-4555-ad2a-6dc71cf6635f + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T182517Z:b6134460-bfd9-4555-ad2a-6dc71cf6635f + X-Msedge-Ref: + - 'Ref A: FF24D96A8CF446E6AE7B4A58EA26F9C1 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:25:17Z' + status: 202 Accepted + code: 202 + duration: 178.551208ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREMjA5RjNFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113565684031013&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=EqWEfGjjJ2oxEuQd9wxSienuuSiSqGaYyjShADBgv2RNUrKIfO440JJvKBCrOR4eWFzjEmFvDKUROgvmxkzuC5Dvs_1Zclzzjb-0zm9OvgL5dSx4IVncRoHn4JwtdB9qdCl_s0deQVXdHgOq4SBj_JuxALiq8GpBarKfEnzSR1YqPDuJt7X62z10tkQq8OJT1l3IzgLJileRdr7bnegbr-i8_7iCkEL2rxlPvM7EtQ3aI_1HVfCd4k7RD8LiVLn4IHc7DjkS6gyX7hq9-zg44F_HRseHdnjimU9EjMHS29Iba5rPqRtkMyXlPhvgz4-yB3O9MrUOPCs8izXLhRIGSg&h=_C549wwWBYFwr3KBAAz-UPaJYTYbj0xS-xV7FaYhD1I + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 18:36:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d027c397-a096-42f3-aa76-3235b3666575 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T183623Z:d027c397-a096-42f3-aa76-3235b3666575 + X-Msedge-Ref: + - 'Ref A: 74CA15A9409945E8ADA073EC2E9E47EE Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:36:23Z' + status: 200 OK + code: 200 + duration: 70.570625ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2904 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d209f3e","azd-layer-name":"","azd-provision-param-hash":"acafd7045a837fe4a8bd429dae9b27588f836da61429b6cf2cda35ead7062c99"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d209f3e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T19:21:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T18:22:48.1730293Z","duration":"PT1M3.9913627S","correlationId":"b9ddf6d835f27ca94999eee72f0a6fbc","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d209f3e"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crpogq2w7bplv2u"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-pogq2w7bplv2u"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crpogq2w7bplv2u.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.App/managedEnvironments/cae-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ContainerRegistry/registries/crpogq2w7bplv2u/providers/Microsoft.Authorization/roleAssignments/7f24ecc4-6b4b-55c4-968d-c46470d08ae7"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-pogq2w7bplv2u"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d209f3e/providers/Microsoft.OperationalInsights/workspaces/log-pogq2w7bplv2u"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2904" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:36:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 17cd84f6-6558-419b-b25d-cbec056f7384 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T183623Z:17cd84f6-6558-419b-b25d-cbec056f7384 + X-Msedge-Ref: + - 'Ref A: 098301E30C2C44DEBE375DEC437F8CD7 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:36:23Z' + status: 200 OK + code: 200 + duration: 155.954708ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 346 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d209f3e"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "346" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 570 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d209f3e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T18:36:24.1279811Z","duration":"PT0.0001668S","correlationId":"938f78573a3c6178c039187fb6f14f59","providers":[],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879/operationStatuses/08584258471013448499?api-version=2021-04-01&t=639113565842842391&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=JkdQ9HPqlBLThZg4yAxmMMGc_zjgI4dXOSG-TbGiNY0MUGYYVCqsTOqgBW91igftExER-dnoacU0IvV_fE70WlZH5eFaPmzO0OQNrF7y6Xa4eUiTlYY21z7twRJI7wkV1FfpOAJ3UlBj7jlzv7YOAEOj9hMxAMvpiXcLnofVoJS2aOnJnNg1sR4qohRLFlEJ8yVL1TVPwxHLG624_jhRRlX0OnfN6JdKanA4PS8NjJNtFI7Ph1SMIms8nY8uvkwwCUAMHOyCakMdr6ljnj5mAXYc-o_j-H9Jy_nMWPq1KfyyAxeJSL7dDVy_QPEwiI5LfIYX9Ma8gBfGlWSkmd_HdQ&h=DIHjuQ6YFpRU4PIXRUjE6VEn69S0E6w1h4IYvz2F9oQ + Cache-Control: + - no-cache + Content-Length: + - "570" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:36:24 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 1ceddb10-36c4-4179-bb3a-acf54b745b23 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T183624Z:1ceddb10-36c4-4179-bb3a-acf54b745b23 + X-Msedge-Ref: + - 'Ref A: 0B37C682C1C34E8C90C094275248BFF6 Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:36:23Z' + status: 200 OK + code: 200 + duration: 555.234375ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879/operationStatuses/08584258471013448499?api-version=2021-04-01&t=639113565842842391&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=JkdQ9HPqlBLThZg4yAxmMMGc_zjgI4dXOSG-TbGiNY0MUGYYVCqsTOqgBW91igftExER-dnoacU0IvV_fE70WlZH5eFaPmzO0OQNrF7y6Xa4eUiTlYY21z7twRJI7wkV1FfpOAJ3UlBj7jlzv7YOAEOj9hMxAMvpiXcLnofVoJS2aOnJnNg1sR4qohRLFlEJ8yVL1TVPwxHLG624_jhRRlX0OnfN6JdKanA4PS8NjJNtFI7Ph1SMIms8nY8uvkwwCUAMHOyCakMdr6ljnj5mAXYc-o_j-H9Jy_nMWPq1KfyyAxeJSL7dDVy_QPEwiI5LfIYX9Ma8gBfGlWSkmd_HdQ&h=DIHjuQ6YFpRU4PIXRUjE6VEn69S0E6w1h4IYvz2F9oQ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:36:54 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 841556ea-b87e-434b-bee1-5bd24a10efee + X-Ms-Routing-Request-Id: + - EASTUS:20260409T183654Z:841556ea-b87e-434b-bee1-5bd24a10efee + X-Msedge-Ref: + - 'Ref A: 001E635D319C4297884E2E2CA2831ECD Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:36:54Z' + status: 200 OK + code: 200 + duration: 193.596167ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 604 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d209f3e-1775758879","name":"azdtest-d209f3e-1775758879","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d209f3e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T18:36:24.5874201Z","duration":"PT0.459439S","correlationId":"938f78573a3c6178c039187fb6f14f59","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "604" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 18:36:54 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 938f78573a3c6178c039187fb6f14f59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 5e3d5c32-b976-411b-ba65-0bec29dc560e + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T183654Z:5e3d5c32-b976-411b-ba65-0bec29dc560e + X-Msedge-Ref: + - 'Ref A: BE45E4A53EF54C05802C622834645E2F Ref B: BN1AA2051014039 Ref C: 2026-04-09T18:36:54Z' + status: 200 OK + code: 200 + duration: 84.265792ms + - id: 52 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:36:55 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 18:41:55 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 8e77bd294ad91411db668e19b3b26136096a8d4d + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760065-MIA + X-Timer: + - S1775759815.103371,VS0,VE54 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 145.000875ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 18:36:55 GMT + Expires: + - Thu, 09 Apr 2026 18:36:55 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: 239.474791ms + - id: 54 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:36:55 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 18:41:55 GMT + Source-Age: + - "282" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 9b48d4b4c440f512f9d839eb46c83c5f9265512f + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760065-MIA + X-Timer: + - S1775759815.435215,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 21.19625ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 18:36:55 GMT + Expires: + - Thu, 09 Apr 2026 18:36:55 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 101.219292ms + - id: 56 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:36:55 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 18:41:55 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - cfe205a79c5d393dc39b0d2cca9a02f711be0305 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760065-MIA + X-Timer: + - S1775759816.580521,VS0,VE66 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 79.837541ms + - id: 57 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:36:55 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 18:41:55 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 4edab412301347fc36c5a914fb19089ac245008f + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760065-MIA + X-Timer: + - S1775759816.679577,VS0,VE60 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 643.3359ms + duration: 77.879958ms --- -env_name: azdtest-w29f862 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1769126940" +env_name: azdtest-d209f3e +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775758879" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.dotnet.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.dotnet.yaml index afe125956b9..eee7c40d23f 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.dotnet.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.dotnet.yaml @@ -4,16 +4,17 @@ interactions: - id: 0 args: - publish - - C:\Users\hemarina\AppData\Local\Temp\Test_CLI_Up_Down_ContainerAppDotNetPublish3114122194\001\src\dotnet + - /private/var/folders/4_/b31s94vn0wn0y0bhzmd0f9_h0000gn/T/Test_CLI_Up_Down_ContainerAppDotNetPublish1779952158/001/src/dotnet - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=containerapp/web-azdtest-w39e10d - - -p:ContainerImageTag=azd-deploy-1769126940 - - -p:ContainerRegistry=cre2rj2pxpf4tdc.azurecr.io + - -p:ContainerRepository=containerapp/web-azdtest-d995307 + - -p:ContainerImageTag=azd-deploy-1775765041 + - -p:ContainerRegistry=crau3ymjg7jhwlm.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 - stdout: "{\"config\":{\"ExposedPorts\":{\"8080/tcp\":{}},\"Labels\":{\"org.opencontainers.image.created\":\"2026-01-23T00:15:37.8169644Z\",\"org.opencontainers.artifact.created\":\"2026-01-23T00:15:37.8169644Z\",\"org.opencontainers.image.authors\":\"webapp\",\"org.opencontainers.image.version\":\"1.0.0\",\"org.opencontainers.image.base.name\":\"mcr.microsoft.com/dotnet/aspnet:8.0\",\"net.dot.runtime.majorminor\":\"8.0\",\"net.dot.sdk.version\":\"10.0.102\",\"org.opencontainers.image.base.digest\":\"sha256:21f890828684988e4fcebdcaca2cf0f685592ed555e7615b16274b83ce738a42\"},\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"APP_UID=1654\",\"ASPNETCORE_HTTP_PORTS=8080\",\"DOTNET_RUNNING_IN_CONTAINER=true\",\"DOTNET_VERSION=8.0.23\",\"ASPNET_VERSION=8.0.23\"],\"WorkingDir\":\"/app/\",\"Entrypoint\":[\"dotnet\",\"/app/webapp.dll\"],\"User\":\"1654\"},\"created\":\"2026-01-23T00:15:40.6009757Z\",\"rootfs\":{\"type\":\"layers\",\"diff_ids\":[\"sha256:e0e6002570470d87b99366522e2deadfd07fd6abb0c481198c1e336f9117e5a6\",\"sha256:1a3f5e02f6f1c808deaf0c490d786191a718f4ca4c0a26bd95e68fa3dbc8d026\",\"sha256:73a0e37a8718c8390841ac9ad0f28b2e4cb0b3b58ea78a8e487a017b3184b10e\",\"sha256:451e0ae03a8fdebb6f06e9b947ba6d38004fef22d6c07da53b59df08eef3eb0c\",\"sha256:036dcc13d63974ea6a5cb8ca4da8e6e25ab0c471414788b51930576d53bd4a68\",\"sha256:94a122a9cda8bdd05931e81238ff9d27f054462166a9d78dc5eb5f8c06ad59c4\",\"sha256:7d882158d37bc9d0bec300ea0463c7aad78c23690d23dbd149749207928824f2\"]},\"architecture\":\"amd64\",\"os\":\"linux\",\"history\":[{\"comment\":\"debuerreotype 0.17\",\"created\":\"2026-01-12T00:00:00.0000000Z\",\"created_by\":\"# debian.sh --arch \\u0027amd64\\u0027 out/ \\u0027bookworm\\u0027 \\u0027@1768176000\\u0027\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:02.3131217Z\",\"created_by\":\"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:02.3131217Z\",\"created_by\":\"RUN /bin/sh -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\\u002B\\u002B6 tzdata zlib1g \\u0026\\u0026 rm -rf /var/lib/apt/lists/* # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:04.8764528Z\",\"created_by\":\"RUN /bin/sh -c groupadd --gid=$APP_UID app \\u0026\\u0026 useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:12.2285374Z\",\"created_by\":\"ENV DOTNET_VERSION=8.0.23\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:12.2285374Z\",\"created_by\":\"COPY /dotnet /usr/share/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:13.2783027Z\",\"created_by\":\"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:19.2114961Z\",\"created_by\":\"ENV ASPNET_VERSION=8.0.23\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2026-01-13T21:10:19.2114961Z\",\"created_by\":\"COPY /dotnet /usr/share/dotnet # buildkit\"},{\"author\":\".NET SDK\",\"created\":\"2026-01-23T00:15:40.6009505Z\",\"created_by\":\".NET SDK Container Tooling, version 10.0.102-servicing.25612.105\\u002B44525024595742ebe09023abe709df51de65009b\"}]}\r\n" + stdout: | + {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2026-04-09T20:06:11.0148510Z","org.opencontainers.artifact.created":"2026-04-09T20:06:11.0148510Z","org.opencontainers.image.authors":"webapp","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"10.0.100","org.opencontainers.image.base.digest":"sha256:f96b3e51900016669cc947ccc3d2b039f215177ba898484d0ddf58fa3ff24502"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.25","ASPNET_VERSION=8.0.25"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/webapp.dll"],"User":"1654"},"created":"2026-04-09T20:06:12.9194920Z","rootfs":{"type":"layers","diff_ids":["sha256:335fc45cf5e8eaa6d5b19a54b16db34311ce0d7a068eb2a9222eab4ddd3c216d","sha256:30da658ae7b20de905ba4a453303e70f194c701b1331b47243f93e6e12e4e89a","sha256:b45a6cab1cc45a5d56a5cb8b9bca8ea72136b0b38e16c446f5014319cb55d586","sha256:3daec66b7d6c23437299e2ec6776030ad3b9d6e4dcf8a8fa9cac3965d73f56eb","sha256:787bb4e362176e908640408f44ad9cecab4af579f9ba5de04fb0fa105c0e1eef","sha256:9c8ff24a0a0de3ef951df3c4cbe1de7db5f063012a70d8d01da049a77eaa3fe3","sha256:85973a96f4ae450d27fb59ef9b5c25d47d680f9a39265071c9088d7093083cd9"]},"architecture":"amd64","os":"linux","history":[{"comment":"debuerreotype 0.17","created":"2026-04-06T00:00:00.0000000Z","created_by":"# debian.sh --arch \u0027amd64\u0027 out/ \u0027bookworm\u0027 \u0027@1775433600\u0027"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:09.7393608Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:09.7393608Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:11.5276800Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:18.3527928Z","created_by":"ENV DOTNET_VERSION=8.0.25","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:18.3527928Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:19.5843303Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:26.0849582Z","created_by":"ENV ASPNET_VERSION=8.0.25","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2026-04-07T20:35:26.0849582Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"author":".NET SDK","created":"2026-04-09T20:06:12.9194790Z","created_by":".NET SDK Container Tooling, version 10.0.100-rtm.25523.111\u002Bb0f34d51fccc69fd334253924abd8d6853fad7aa"}]} stderr: "" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.yaml index 01f40fd1045..067156ac646 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerAppDotNetPublish.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:34 GMT + - Thu, 09 Apr 2026 20:04:11 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3ba2a4cd-2113-4f69-8c81-7e6aa804f0ed + - 4f015cc6-1179-4e31-8770-726809d3c80f X-Ms-Routing-Request-Id: - - CENTRALUS:20260123T000934Z:3ba2a4cd-2113-4f69-8c81-7e6aa804f0ed + - EASTUS:20260409T200411Z:4f015cc6-1179-4e31-8770-726809d3c80f X-Msedge-Ref: - - 'Ref A: 503DE72408CF41D18AF8C26CE874F818 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:32Z' + - 'Ref A: DCB04E0F1A1541E48E6A50D8E8795947 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:10Z' status: 200 OK code: 200 - duration: 2.3185476s + duration: 1.268118541s - id: 1 request: proto: HTTP/1.1 @@ -91,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w39e10d%27&api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d995307%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:34 GMT + - Thu, 09 Apr 2026 20:04:11 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 518df04b-010c-4c50-8938-4de18b418f2c + - 3e41e10f-0d96-460c-bcad-c908cec757f0 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T000934Z:518df04b-010c-4c50-8938-4de18b418f2c + - EASTUS:20260409T200411Z:3e41e10f-0d96-460c-bcad-c908cec757f0 X-Msedge-Ref: - - 'Ref A: 80A500BD85FA4AB2B14868ABDD48750A Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:34Z' + - 'Ref A: EF0183D51FFC4BFA96EB93E7C9472B45 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:11Z' status: 200 OK code: 200 - duration: 92.6511ms + duration: 230.350167ms - id: 2 request: proto: HTTP/1.1 @@ -160,10 +160,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -171,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 24870 + content_length: 13479 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antischfoundrymachine","name":"antischfoundrymachine","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"antischfoundrymachine","DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg48943Second","name":"javacsmrg48943Second","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/06/2026 08:22:50"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/lfraleigh-foundry","name":"lfraleigh-foundry","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-lorifraleigh-agent","name":"rg-lorifraleigh-agent","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-dealmahastorage","name":"rg-dealmahastorage","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"Owners":"dealmaha","ServiceDirectory":"storage","DeleteAfter":"2025-09-03T18:34:00.1287154Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2025-03-05T22:20:18.0264905Z","ServiceDirectory":"messaging/azeventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\"","owners":"jsquire, juanospina"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest","name":"v-tongMonthlyReleaseTest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"12/15/2026 04:13:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcp-swe-demo-rg","name":"mcp-swe-demo-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-mcp-demo","name":"rohitganguly-mcp-demo","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chatbotrg","name":"chatbotrg","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec_helper","name":"typespec_helper","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DoNotDelete":"yes","Owners":"jiaqzhang,Renhe.Li,Yu.Chun","Purpose":"Azure SDK QA Bot Dev environment"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-prod-eastasia","name":"azure-sdk-qa-bot-prod-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-wanl-eastasia","name":"azure-sdk-qa-bot-wanl-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-devinternal-eastasia","name":"azure-sdk-qa-bot-devinternal-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azure-sdk-qa-bot-dev-eastasia","name":"azure-sdk-qa-bot-dev-eastasia","type":"Microsoft.Resources/resourceGroups","location":"eastasia","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jialinhuang-test","name":"rg-jialinhuang-test","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"12/19/2025 16:30:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test5","name":"rg-hemarina-test5","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"hemarina-test5","DeleteAfter":"02/01/2026 04:20:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-2-eus2-fgdps","name":"rg-jinlong-2-eus2-fgdps","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-2","azd-template":"ronaldbosma/azure-integration-services-quickstart","DeleteAfter":"03/01/2025 12:17:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/prmarott-apiview","name":"prmarott-apiview","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-aihackery","name":"rg-aihackery","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"Because It''s Awesome"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/trpresco-archagent","name":"trpresco-archagent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm6e012f0814954aa","name":"cm6e012f0814954aa","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-ripark","name":"rg-ripark","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/judytest","name":"judytest","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/16/2025 07:41:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzureBackupRG_eastus2_1","name":"AzureBackupRG_eastus2_1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.RecoveryServices/","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-renhel-8669","name":"rg-renhel-8669","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"owner":"renhe","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryostorage","name":"rg-larryostorage","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-10-29T21:50:46.7625939Z","ServiceDirectory":"storage","Owners":"larryo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcp-perf","name":"mcp-perf","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"11/22/2026 08:17:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/conniey-rg","name":"conniey-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/24/2026 12:13:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryo-community-bbs","name":"rg-larryo-community-bbs","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"larryo-community-bbs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu-foundry","name":"wenjiefu-foundry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-lfraleigh","name":"rg-lfraleigh","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"01/31/2026 20:35:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-triageagentsquad","name":"rg-triageagentsquad","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc82824eb","name":"rgloc82824eb","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-heathsstorage","name":"rg-heathsstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","DeleteAfter":"2025-12-17T01:29:17.9284551Z","Owners":"heaths"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-25T18:50:08.2731360Z","Owners":"larryo","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-searchtest3322","name":"rg-searchtest3322","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"search","Owners":"minhanhphan","DeleteAfter":"02/01/2026 00:16:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-rg","name":"llaw-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/22/2026 20:35:12"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/UxTestRG","name":"UxTestRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/kcwalina","name":"kcwalina","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2026 00:19:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/Default-ApplicationInsights-EastUS","name":"Default-ApplicationInsights-EastUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shayne","name":"shayne","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/sociallinker","name":"sociallinker","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/first-timers-only","name":"first-timers-only","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shboyer-ghost","name":"shboyer-ghost","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates","name":"azureadvocates","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","name":"ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/microsoft.insights/components/social-linker-insights","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceai","name":"rg-unconferenceai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"unconferenceai"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdevtools-pm","name":"azdevtools-pm","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","name":"pmdataagent-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-func-flex-demo","name":"rg-func-flex-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"func-flex-demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/devtopromoter","name":"devtopromoter","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/nerddinner-mvc4","name":"nerddinner-mvc4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS2","name":"DefaultResourceGroup-EUS2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","name":"rg-shboyer-4385","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-octopets-2025","name":"rg-octopets-2025","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"aspire":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py","name":"rg-scope-func-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","name":"ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py/providers/microsoft.insights/components/appi-vc3jdcjrljj4e","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recorded-swa-session","name":"rg-recorded-swa-session","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dash","name":"rg-ontology-dash","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dash"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dashboard","name":"rg-ontology-dashboard","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dashboard"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-fortune-peter","name":"rg-fortune-peter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fortune-peter"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recipe-remix-dev","name":"rg-recipe-remix-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"recipe-remix-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-bug-detective-dev","name":"rg-bug-detective-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"bug-detective-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","name":"rg-shboyer-af-ts","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-echo-ts-fresh","name":"rg-echo-ts-fresh","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"echo-ts-fresh"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ts-mf-testing","name":"rg-ts-mf-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ts-mf-testing"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/waza-docs-rg","name":"waza-docs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-collab-plan","name":"rg-collab-plan","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-task-tracker-demo","name":"rg-task-tracker-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-demo-deploy-k8m3","name":"rg-demo-deploy-k8m3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"demo-deploy-k8m3"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-forge-plugin-dev","name":"rg-forge-plugin-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"forge-plugin-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-test-agent","name":"rg-test-agent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev","name":"rg-waza-platform-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"waza-platform-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20","name":"rg-azdtest-d7ffc20","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2026-04-09T19:14:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/swa-tutorial","name":"swa-tutorial","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceapp","name":"rg-unconferenceapp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"unconferenceapp"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","name":"rg-copilot-demo","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-calc","name":"rg-calc","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"calc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-email-router-agent","name":"rg-email-router-agent","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"email-router-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-david-test","name":"rg-david-test","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"david-test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-claw","name":"rg-foundry-claw","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-claw"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus","name":"rg-foundry-helper-ncus","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-helper-ncus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-USW3","name":"DefaultResourceGroup-USW3","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "24870" + - "13479" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:35 GMT + - Thu, 09 Apr 2026 20:04:11 GMT Expires: - "-1" Pragma: @@ -194,20 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cbfc3362-76b1-4a72-9155-a08392b59cde + - e5d884d1-5d75-4d60-939a-b68f26a529b3 X-Ms-Routing-Request-Id: - - WESTUS:20260123T000935Z:cbfc3362-76b1-4a72-9155-a08392b59cde + - EASTUS:20260409T200411Z:e5d884d1-5d75-4d60-939a-b68f26a529b3 X-Msedge-Ref: - - 'Ref A: 5D1EAF03601744E8AAD7F4F76AF41B2C Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:34Z' + - 'Ref A: 37687F8B6ED54F3BB184348A8A786FEA Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:11Z' status: 200 OK code: 200 - duration: 234.5527ms + duration: 168.321791ms - id: 3 request: proto: HTTP/1.1 @@ -229,10 +229,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -240,18 +240,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1959253 + content_length: 957504 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=RY9db4IwGIV%2fC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2bO5OOdGdsH3rT9t%2bzZ4DK7xPyS%2fkQ9Ro63ZJH1z7t%2b33307EcvmQnJCo9cIcHOW101C4j%2fChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2fDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2b5eAF0GRZKQMSaimLaT3J%2b6LiagDM5nAtAUq%2f%2f08e%2fJ2GWtLM4fdhx%2fAQ%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1959253" + - "957504" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:42 GMT + - Thu, 09 Apr 2026 20:04:15 GMT Expires: - "-1" Pragma: @@ -263,20 +263,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - 75c25d5f-0a43-4bd1-b161-1319a87b7225 + - e682196c-d689-4770-a7cf-d280b1386f57 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T000942Z:75c25d5f-0a43-4bd1-b161-1319a87b7225 + - EASTUS:20260409T200416Z:e682196c-d689-4770-a7cf-d280b1386f57 X-Msedge-Ref: - - 'Ref A: AA7A2BADB57B4A14BE392FDBCBB4A39B Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:35Z' + - 'Ref A: 49192D951D714B3EA3F694D6A247CA5A Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:12Z' status: 200 OK code: 200 - duration: 6.9720276s + duration: 4.028083333s - id: 4 request: proto: HTTP/1.1 @@ -296,10 +296,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=RY9db4IwGIV%2FC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2BO5OOdGdsH3rT9t%2BzZ4DK7xPyS%2FkQ9Ro63ZJH1z7t%2B33307EcvmQnJCo9cIcHOW101C4j%2FChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2FDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2B5eAF0GRZKQMSaimLaT3J%2B6LiagDM5nAtAUq%2F%2F08e%2FJ2GWtLM4fdhx%2FAQ%3D%3D&api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -307,18 +307,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 334892 + content_length: 898963 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2bZbwa%2b%2f0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2b7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2fUNTIY%2fG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2biO7xFVSSP2v%2bsrgYS5oidP0Cw%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "334892" + - "898963" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:44 GMT + - Thu, 09 Apr 2026 20:04:18 GMT Expires: - "-1" Pragma: @@ -330,20 +330,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 70e5f11f-62f9-4cbe-a855-dac214d4cc40 + - 4aed71eb-1fec-415b-9b26-8e576ca8164e X-Ms-Routing-Request-Id: - - WESTUS2:20260123T000944Z:70e5f11f-62f9-4cbe-a855-dac214d4cc40 + - EASTUS:20260409T200418Z:4aed71eb-1fec-415b-9b26-8e576ca8164e X-Msedge-Ref: - - 'Ref A: 9493BADD61784338AE7A2AF447B2E490 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:42Z' + - 'Ref A: ABB4E561436443F6A4AA47BADCA1EB68 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:16Z' status: 200 OK code: 200 - duration: 1.9379211s + duration: 2.544263083s - id: 5 request: proto: HTTP/1.1 @@ -363,10 +363,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2BZbwa%2B%2F0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2B7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2FUNTIY%2FG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2BiO7xFVSSP2v%2BsrgYS5oidP0Cw%3D%3D&api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -374,18 +374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14077 + content_length: 515084 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "14077" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:45 GMT + - Thu, 09 Apr 2026 20:04:20 GMT Expires: - "-1" Pragma: @@ -397,68 +397,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f23a2f77-9fb8-4571-a492-2fd71a2195e4 + - e7f26284-634e-4a67-b406-6bce0621fb7a X-Ms-Routing-Request-Id: - - CENTRALUS:20260123T000945Z:f23a2f77-9fb8-4571-a492-2fd71a2195e4 + - EASTUS:20260409T200420Z:e7f26284-634e-4a67-b406-6bce0621fb7a X-Msedge-Ref: - - 'Ref A: 0A6D321706714E169DBCBFC5662A9D0C Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:44Z' + - 'Ref A: 0D5C73DFA9374D3292A727E040A42D09 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:19Z' status: 200 OK code: 200 - duration: 787.9384ms + duration: 1.618164208s - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 7845 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w39e10d","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":"17519074622280447864"}},"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":"7043133148496298500"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "7845" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940/validate?api-version=2021-04-01 - method: POST + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2569 + content_length: 415580 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:45Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:09:45.6634901Z","duration":"PT0S","correlationId":"7e589978ac0a1cb83effeb8c88391dd0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w39e10d"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc/providers/Microsoft.Authorization/roleAssignments/6ba2f458-f81e-5c30-bcaf-07bdbe1b51cd"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2569" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:46 GMT + - Thu, 09 Apr 2026 20:04:21 GMT Expires: - "-1" Pragma: @@ -470,70 +464,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - beb986a9dc65dc58534a20f757c667d8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - dc10c7a9-0624-4b66-934d-c1f2fd8d68b7 + - 982ec2b2-f8db-4709-bafe-4ebde1b777bd X-Ms-Routing-Request-Id: - - CENTRALUS:20260123T000946Z:dc10c7a9-0624-4b66-934d-c1f2fd8d68b7 + - EASTUS2:20260409T200421Z:982ec2b2-f8db-4709-bafe-4ebde1b777bd X-Msedge-Ref: - - 'Ref A: C6D775A1CC1B48D29377EA1AFC2B8F88 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:45Z' + - 'Ref A: 5269BA26D1694B14BB6A2F0CBB4E8118 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:20Z' status: 200 OK code: 200 - duration: 1.6337858s + duration: 830.150833ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 7845 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w39e10d","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":"17519074622280447864"}},"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":"7043133148496298500"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "7845" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940?api-version=2021-04-01 - method: PUT + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1412 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:47Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-23T00:09:47.1433046Z","duration":"PT0.0008587S","correlationId":"7e589978ac0a1cb83effeb8c88391dd0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w39e10d"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940/operationStatuses/08584324798983298874?api-version=2021-04-01&t=639047237901748029&c=MIIHhzCCBm-gAwIBAgITfAoFj3UnLFat7-UOvQAACgWPdTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMTE1MTEyNDI1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL7q0FwMI4pK9lgk52VrKK0P6Z6MwRyR6Mzfg0d4v1dzxqST3G7RQfjhQG39dCI9Mqy5lsmCerbLetSdc1VE4mJJyuNqCsLo7Xhf2CV7wmEO09A2_8WwFfyTUxp45W8rRYa1zwHHFrdcjFQv20LolrP8mRmDFdRa8ZJvyL4gJLvstuWI3gw_Ksl2SSN2tDRNIef_UKj04bXdF-fCZCGo0jqYSS8e8Clin1cQlNRt0aLeInNG7ppk7EM_Pcz26onkMivaBql7Rg6TNnDDvM524Q7850OSMTKXNbh58e4Za1OcyVOAPvhx0aaydGQ-xHBxmEfMl2syBwmvbnAj8Iswv-0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBRMuwNSmuAZx_T5anD1Wx0cvqIrxDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACjtkHb5TanqpNigb0DttCimJSPYHrIg6lNBvXVy8789Vr2cGfPAEFox1evwMNExZLtQKv9gy6rx6281gkNcJA4Yc7tUxdS9J_1U7ZtG_BNn-pNt72tBez50Amzrbtp1Gd0XnY4fKXBHw4qdG7ftmlNNWTqfRVgka_EorpmVFs6e_mnWuxb-rJSnUG9Y15iPF-uGetF94xhedcLLhvyzwqo-yGRcXwPG635JCUtNWOsst3HlkbhCissfyYSKr7xWsjcCOKI58wyoC4ydfgHzsq5sC2gZDxQ2m1jwYXr8fSCiJ_3YlUBM1bXeWrIQ5-qmYif4TRCrqdV-NTtmheaDL1M&s=Sc2qWtVp-W6mfE2bMo4K10sK_rxKFO9N-KtlUwZCSoIFYWOPXH5d3QX6FcYvQLWRyNmGQSHNlmk06ZgxzI9Xnorea0pPstu11LDhuv51zLSoiNPM_BR0-CwSM2wXTu9C-pu-GYxXSceiJSGalRXWoYR7dcs_d4F-caQkj6iOLAvQeokgQJIfGxHxSiTD5oyZvM6DxVFmdyAlNx8PyWseoZMdYvI3kaV8-g8FJi2uHg8SYErZ04lZu6-vPNJV1G76WIWUrcBbYTWiIscycETAa159aboq6gnaekp-enT154XyIwG_9yzMYijytEluegqlGe60HNH9npH2911NbbEOpQ&h=ftTCGOtm0m423TQmX3Zj4IGHyUd6aYwX497AVxJhqXo Cache-Control: - no-cache Content-Length: - - "1412" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:09:50 GMT + - Thu, 09 Apr 2026 20:04:21 GMT Expires: - "-1" Pragma: @@ -545,22 +531,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - X-Ms-Deployment-Engine-Version: - - 1.568.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - beb986a9dc65dc58534a20f757c667d8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 5e0ff29c-b195-461a-96cf-225b068567dd + - cf6dbf9f-da4a-469a-b30a-d1ffdd46304c X-Ms-Routing-Request-Id: - - WESTUS:20260123T000950Z:5e0ff29c-b195-461a-96cf-225b068567dd + - EASTUS2:20260409T200421Z:cf6dbf9f-da4a-469a-b30a-d1ffdd46304c X-Msedge-Ref: - - 'Ref A: AA007E96E76D4EE78918BB5B77E44C87 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:09:46Z' - status: 201 Created - code: 201 - duration: 3.3937188s + - 'Ref A: 38486F4D85A24CDFB206FA9197A633C2 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:21Z' + status: 200 OK + code: 200 + duration: 450.462084ms - id: 8 request: proto: HTTP/1.1 @@ -575,15 +559,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940/operationStatuses/08584324798983298874?api-version=2021-04-01&t=639047237901748029&c=MIIHhzCCBm-gAwIBAgITfAoFj3UnLFat7-UOvQAACgWPdTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMTE1MTEyNDI1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL7q0FwMI4pK9lgk52VrKK0P6Z6MwRyR6Mzfg0d4v1dzxqST3G7RQfjhQG39dCI9Mqy5lsmCerbLetSdc1VE4mJJyuNqCsLo7Xhf2CV7wmEO09A2_8WwFfyTUxp45W8rRYa1zwHHFrdcjFQv20LolrP8mRmDFdRa8ZJvyL4gJLvstuWI3gw_Ksl2SSN2tDRNIef_UKj04bXdF-fCZCGo0jqYSS8e8Clin1cQlNRt0aLeInNG7ppk7EM_Pcz26onkMivaBql7Rg6TNnDDvM524Q7850OSMTKXNbh58e4Za1OcyVOAPvhx0aaydGQ-xHBxmEfMl2syBwmvbnAj8Iswv-0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBRMuwNSmuAZx_T5anD1Wx0cvqIrxDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACjtkHb5TanqpNigb0DttCimJSPYHrIg6lNBvXVy8789Vr2cGfPAEFox1evwMNExZLtQKv9gy6rx6281gkNcJA4Yc7tUxdS9J_1U7ZtG_BNn-pNt72tBez50Amzrbtp1Gd0XnY4fKXBHw4qdG7ftmlNNWTqfRVgka_EorpmVFs6e_mnWuxb-rJSnUG9Y15iPF-uGetF94xhedcLLhvyzwqo-yGRcXwPG635JCUtNWOsst3HlkbhCissfyYSKr7xWsjcCOKI58wyoC4ydfgHzsq5sC2gZDxQ2m1jwYXr8fSCiJ_3YlUBM1bXeWrIQ5-qmYif4TRCrqdV-NTtmheaDL1M&s=Sc2qWtVp-W6mfE2bMo4K10sK_rxKFO9N-KtlUwZCSoIFYWOPXH5d3QX6FcYvQLWRyNmGQSHNlmk06ZgxzI9Xnorea0pPstu11LDhuv51zLSoiNPM_BR0-CwSM2wXTu9C-pu-GYxXSceiJSGalRXWoYR7dcs_d4F-caQkj6iOLAvQeokgQJIfGxHxSiTD5oyZvM6DxVFmdyAlNx8PyWseoZMdYvI3kaV8-g8FJi2uHg8SYErZ04lZu6-vPNJV1G76WIWUrcBbYTWiIscycETAa159aboq6gnaekp-enT154XyIwG_9yzMYijytEluegqlGe60HNH9npH2911NbbEOpQ&h=ftTCGOtm0m423TQmX3Zj4IGHyUd6aYwX497AVxJhqXo + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=assignedTo('6c37e0ec-712d-4900-a73f-bcfd17630788') method: GET response: proto: HTTP/2.0 @@ -591,18 +577,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 39026 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-02-11T20:25:48.1490444Z","updatedOn":"2025-02-11T20:25:48.1490444Z","createdBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","updatedBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fc14d582-d744-4057-927e-b2ac56269010","type":"Microsoft.Authorization/roleAssignments","name":"fc14d582-d744-4057-927e-b2ac56269010"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-04-29T20:00:09.1204889Z","updatedOn":"2025-04-29T20:00:09.1204889Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fcf6514a-ec92-4579-b376-985ed789af99","type":"Microsoft.Authorization/roleAssignments","name":"fcf6514a-ec92-4579-b376-985ed789af99"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-05-12T20:59:23.1044444Z","updatedOn":"2025-05-12T20:59:23.1044444Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/e1b4ed65-90d5-4575-9fab-a15e8dd8bc67","type":"Microsoft.Authorization/roleAssignments","name":"e1b4ed65-90d5-4575-9fab-a15e8dd8bc67"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","condition":null,"conditionVersion":null,"createdOn":"2025-10-17T23:58:29.8971266Z","updatedOn":"2025-10-17T23:58:29.8971266Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385/providers/Microsoft.Authorization/roleAssignments/29bfa47e-c62a-42f2-b8eb-2bb43b0d0663","type":"Microsoft.Authorization/roleAssignments","name":"29bfa47e-c62a-42f2-b8eb-2bb43b0d0663"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/e79298df-d852-4c6d-84f9-5d13249d1e55","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025","condition":null,"conditionVersion":null,"createdOn":"2025-10-21T16:32:22.3532519Z","updatedOn":"2025-10-21T16:32:22.3532519Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025/providers/Microsoft.Authorization/roleAssignments/f009b370-f0d7-521f-8190-eaaa9291fcec","type":"Microsoft.Authorization/roleAssignments","name":"f009b370-f0d7-521f-8190-eaaa9291fcec"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","condition":null,"conditionVersion":null,"createdOn":"2026-01-16T22:29:38.5035324Z","updatedOn":"2026-01-16T22:29:38.5035324Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg/providers/Microsoft.Authorization/roleAssignments/b9a7d332-61f1-4436-a054-b0a07f45cba3","type":"Microsoft.Authorization/roleAssignments","name":"b9a7d332-61f1-4436-a054-b0a07f45cba3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:17:17.9080051Z","updatedOn":"2026-01-20T23:17:17.9080051Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.Authorization/roleAssignments/a6fcb9dd-5363-4ac1-ad09-52da2646918a","type":"Microsoft.Authorization/roleAssignments","name":"a6fcb9dd-5363-4ac1-ad09-52da2646918a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:22:41.7902463Z","updatedOn":"2026-01-20T23:22:41.7902463Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":"Granted by Microsoft Foundry vscode extension"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr/providers/Microsoft.Authorization/roleAssignments/4f9e750e-a959-4089-99a9-735d93d6ae69","type":"Microsoft.Authorization/roleAssignments","name":"4f9e750e-a959-4089-99a9-735d93d6ae69"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.7220122Z","updatedOn":"2026-01-22T18:42:31.7220913Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/7a576f9c-2657-5b4d-83ba-6d7b8564e2c3","type":"Microsoft.Authorization/roleAssignments","name":"7a576f9c-2657-5b4d-83ba-6d7b8564e2c3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.8056446Z","updatedOn":"2026-01-22T18:42:31.6002825Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9","type":"Microsoft.Authorization/roleAssignments","name":"d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:34:36.2184216Z","updatedOn":"2026-01-22T18:43:19.5451992Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog/providers/Microsoft.Authorization/roleAssignments/bf48cd73-5652-58b3-a891-31cd689a8e83","type":"Microsoft.Authorization/roleAssignments","name":"bf48cd73-5652-58b3-a891-31cd689a8e83"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.6412744Z","updatedOn":"2026-01-23T00:14:55.3413202Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/605b3e65-590a-52b0-9b57-7e2487bd436e","type":"Microsoft.Authorization/roleAssignments","name":"605b3e65-590a-52b0-9b57-7e2487bd436e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.7479302Z","updatedOn":"2026-01-23T00:14:55.3524082Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582","type":"Microsoft.Authorization/roleAssignments","name":"cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:10:15.5696850Z","updatedOn":"2026-01-23T00:15:36.5819142Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq/providers/Microsoft.Authorization/roleAssignments/64540a60-8bcc-52bc-b884-c13515038ba2","type":"Microsoft.Authorization/roleAssignments","name":"64540a60-8bcc-52bc-b884-c13515038ba2"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:55.0166898Z","updatedOn":"2026-01-23T20:54:28.1016796Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/fc8334ec-8bea-5e02-9b4f-43cff42c7bed","type":"Microsoft.Authorization/roleAssignments","name":"fc8334ec-8bea-5e02-9b4f-43cff42c7bed"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:54.9912109Z","updatedOn":"2026-01-23T20:54:28.0149087Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/b3341787-0a98-5dd5-a2e0-1756e8c57bde","type":"Microsoft.Authorization/roleAssignments","name":"b3341787-0a98-5dd5-a2e0-1756e8c57bde"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:55:21.3666642Z","updatedOn":"2026-01-23T20:55:21.3666642Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6/providers/Microsoft.Authorization/roleAssignments/4655cef5-9977-5346-a5d2-c27b33dc17c5","type":"Microsoft.Authorization/roleAssignments","name":"4655cef5-9977-5346-a5d2-c27b33dc17c5"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker","condition":null,"conditionVersion":null,"createdOn":"2026-01-27T00:12:51.6587791Z","updatedOn":"2026-01-27T00:12:51.6587791Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker/providers/Microsoft.Authorization/roleAssignments/13fdc017-b129-4d12-886e-97e8bca4c8e4","type":"Microsoft.Authorization/roleAssignments","name":"13fdc017-b129-4d12-886e-97e8bca4c8e4"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1146962Z","updatedOn":"2026-02-14T18:04:18.3583138Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/81290285-4b15-5d3f-b731-9e4f39716269","type":"Microsoft.Authorization/roleAssignments","name":"81290285-4b15-5d3f-b731-9e4f39716269"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1665151Z","updatedOn":"2026-02-14T18:04:18.4095322Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/94dd26ea-5dd1-5807-9af0-6f3b8810c40b","type":"Microsoft.Authorization/roleAssignments","name":"94dd26ea-5dd1-5807-9af0-6f3b8810c40b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:59:35.4573312Z","updatedOn":"2026-02-14T18:04:59.6101897Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi/providers/Microsoft.Authorization/roleAssignments/8290a893-c6ce-5d7f-8746-5b61055a672d","type":"Microsoft.Authorization/roleAssignments","name":"8290a893-c6ce-5d7f-8746-5b61055a672d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","condition":null,"conditionVersion":null,"createdOn":"2026-02-24T03:36:34.6591990Z","updatedOn":"2026-02-24T03:36:34.6591990Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts/providers/Microsoft.Authorization/roleAssignments/b9d7628f-5576-4018-9b5f-85fc24be672e","type":"Microsoft.Authorization/roleAssignments","name":"b9d7628f-5576-4018-9b5f-85fc24be672e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:31:40.1699479Z","updatedOn":"2026-02-25T01:31:40.1699479Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/b8b1f75a-96ba-5d7d-8205-4f794293e324","type":"Microsoft.Authorization/roleAssignments","name":"b8b1f75a-96ba-5d7d-8205-4f794293e324"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:32:07.3700484Z","updatedOn":"2026-02-25T01:32:07.3700484Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/73d453e9-cd90-55bc-a3f0-078c8f1b8e30","type":"Microsoft.Authorization/roleAssignments","name":"73d453e9-cd90-55bc-a3f0-078c8f1b8e30"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9707032Z","updatedOn":"2026-02-25T02:49:12.4889489Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/4cfa7055-b330-58ac-bea4-cf0e72abc5ff","type":"Microsoft.Authorization/roleAssignments","name":"4cfa7055-b330-58ac-bea4-cf0e72abc5ff"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9847168Z","updatedOn":"2026-02-25T02:49:12.4949681Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/101bfda6-41d9-58c6-9a16-6f25f4c4b131","type":"Microsoft.Authorization/roleAssignments","name":"101bfda6-41d9-58c6-9a16-6f25f4c4b131"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:01:58.9795499Z","updatedOn":"2026-02-25T02:01:58.9795499Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa/providers/Microsoft.Authorization/roleAssignments/a9fd7947-ba84-599e-838d-6cd22f42ef7a","type":"Microsoft.Authorization/roleAssignments","name":"a9fd7947-ba84-599e-838d-6cd22f42ef7a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.7648061Z","updatedOn":"2026-03-26T06:17:02.7648061Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/90857788-3534-5da8-abbd-fb99df7e632d","type":"Microsoft.Authorization/roleAssignments","name":"90857788-3534-5da8-abbd-fb99df7e632d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.9211819Z","updatedOn":"2026-03-26T06:17:02.9211819Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/a787ed5b-1f87-59c7-8497-fcc47882dc25","type":"Microsoft.Authorization/roleAssignments","name":"a787ed5b-1f87-59c7-8497-fcc47882dc25"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:18:03.4450814Z","updatedOn":"2026-03-26T06:18:03.4450814Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6/providers/Microsoft.Authorization/roleAssignments/1b32d9b6-8672-55e1-af60-2843979b5d11","type":"Microsoft.Authorization/roleAssignments","name":"1b32d9b6-8672-55e1-af60-2843979b5d11"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.7149469Z","updatedOn":"2026-03-30T21:14:24.1352264Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/daf6cddc-461e-5507-80ac-1b47d025defe","type":"Microsoft.Authorization/roleAssignments","name":"daf6cddc-461e-5507-80ac-1b47d025defe"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.6762167Z","updatedOn":"2026-03-30T21:14:24.0212102Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/bc1a2d3e-657b-58a6-bae0-9eae55ff066e","type":"Microsoft.Authorization/roleAssignments","name":"bc1a2d3e-657b-58a6-bae0-9eae55ff066e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:21:05.2722976Z","updatedOn":"2026-03-30T21:15:04.1182545Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb","type":"Microsoft.Authorization/roleAssignments","name":"e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s","condition":null,"conditionVersion":null,"createdOn":"2026-03-30T20:15:50.2225745Z","updatedOn":"2026-03-30T21:15:15.0669190Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s/providers/Microsoft.Authorization/roleAssignments/138eaa02-7015-5714-93f6-0b60642a6f76","type":"Microsoft.Authorization/roleAssignments","name":"138eaa02-7015-5714-93f6-0b60642a6f76"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:49:49.8204393Z","updatedOn":"2026-04-01T14:49:49.8204393Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/396fa00a-f149-4187-b64e-a4dba132425b","type":"Microsoft.Authorization/roleAssignments","name":"396fa00a-f149-4187-b64e-a4dba132425b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:50:53.6495590Z","updatedOn":"2026-04-01T14:50:53.6495590Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/b086de43-a12f-4221-9202-ae3a60639a80","type":"Microsoft.Authorization/roleAssignments","name":"b086de43-a12f-4221-9202-ae3a60639a80"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:51:49.4986139Z","updatedOn":"2026-04-01T14:51:49.4986139Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/37715462-b5e0-4018-b28e-64dc5e6c6f66","type":"Microsoft.Authorization/roleAssignments","name":"37715462-b5e0-4018-b28e-64dc5e6c6f66"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:53:45.2400140Z","updatedOn":"2026-04-01T14:53:45.2400140Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e0fa3920-df78-405a-b221-43d93dfa6e3f","type":"Microsoft.Authorization/roleAssignments","name":"e0fa3920-df78-405a-b221-43d93dfa6e3f"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:13:01.0359883Z","updatedOn":"2026-04-01T15:13:01.0359883Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/26250363-3add-4120-a6d1-6cdfae07365d","type":"Microsoft.Authorization/roleAssignments","name":"26250363-3add-4120-a6d1-6cdfae07365d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:14:22.4283237Z","updatedOn":"2026-04-01T15:14:22.4283237Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/48ccbbc9-bfdb-459b-b687-b612d9e042a4","type":"Microsoft.Authorization/roleAssignments","name":"48ccbbc9-bfdb-459b-b687-b612d9e042a4"}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "39026" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:24 GMT + - Thu, 09 Apr 2026 20:04:24 GMT Expires: - "-1" Pragma: @@ -614,20 +600,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/d7ac10df-45b8-4cfa-9607-98d00860bde8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0506c2b1-3966-408a-ba20-105de7aedf83 + - 9ad9e5fa-83b4-45eb-9bb6-5a1fb2050de0 X-Ms-Routing-Request-Id: - - WESTUS:20260123T001524Z:0506c2b1-3966-408a-ba20-105de7aedf83 + - EASTUS2:20260409T200424Z:ca55e7a8-c09e-474b-8476-a67785c66449 X-Msedge-Ref: - - 'Ref A: 3BC6557DB3044582AF9244F8BA0DC65B Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:24Z' + - 'Ref A: 292F918F0CB64E8EB016ED196922471F Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:24Z' status: 200 OK code: 200 - duration: 382.5175ms + duration: 369.83075ms - id: 9 request: proto: HTTP/1.1 @@ -642,15 +630,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940?api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635?api-version=2022-04-01 method: GET response: proto: HTTP/2.0 @@ -658,18 +648,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2906 + content_length: 642 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:47Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:15:24.1230821Z","duration":"PT5M36.9797775S","correlationId":"7e589978ac0a1cb83effeb8c88391dd0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w39e10d"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cre2rj2pxpf4tdc"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-e2rj2pxpf4tdc"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cre2rj2pxpf4tdc.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc/providers/Microsoft.Authorization/roleAssignments/6ba2f458-f81e-5c30-bcaf-07bdbe1b51cd"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc"}]}}' + body: '{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants full access to manage all resources, including the ability to assign roles in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:45.8978856Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}' headers: Cache-Control: - no-cache Content-Length: - - "2906" + - "642" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:24 GMT + - Thu, 09 Apr 2026 20:04:24 GMT Expires: - "-1" Pragma: @@ -681,32 +671,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 + - beb986a9dc65dc58534a20f757c667d8 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/96923a8e-4fcf-4a37-848c-4ca55ffca477 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e4abf2b1-ee47-488d-b5a0-447dbae80397 + - a8a2a483-5ff4-4d5b-87e8-e6de4c01e0bc X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001524Z:e4abf2b1-ee47-488d-b5a0-447dbae80397 + - EASTUS:20260409T200424Z:513c45da-1035-4f9b-ada3-944696b495ff X-Msedge-Ref: - - 'Ref A: 5EF8D849BC084DCBB5CA221DC4B8BD5E Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:24Z' + - 'Ref A: B8EB60DD923741A69CF4FE3807CD8285 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:24Z' status: 200 OK code: 200 - duration: 205.7314ms + duration: 110.055542ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 7844 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d995307","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":"3439496075272322378"}},"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":"9361355072579733249"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"}}' form: {} headers: Accept: @@ -715,30 +707,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "7844" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w39e10d%27&api-version=2021-04-01 - method: GET + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 2568 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","name":"rg-azdtest-w39e10d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","DeleteAfter":"2026-01-23T01:09:47Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T21:04:25Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:04:25.3392803Z","duration":"PT0S","correlationId":"beb986a9dc65dc58534a20f757c667d8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d995307"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm/providers/Microsoft.Authorization/roleAssignments/001878a2-b549-5096-958e-d89eda2e8f47"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "2568" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:25 GMT + - Thu, 09 Apr 2026 20:04:25 GMT Expires: - "-1" Pragma: @@ -750,32 +746,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e589978ac0a1cb83effeb8c88391dd0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - beb986a9dc65dc58534a20f757c667d8 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 890999e2-4b0f-4e53-8988-92508597e8b9 + - 69a47151-4885-4593-ba7e-1dff0bd1ce40 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001526Z:890999e2-4b0f-4e53-8988-92508597e8b9 + - EASTUS2:20260409T200425Z:69a47151-4885-4593-ba7e-1dff0bd1ce40 X-Msedge-Ref: - - 'Ref A: 7B7574F2D29F4E1CAE7AA5ADF206CA03 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:26Z' + - 'Ref A: 768E284D5B8640F096C9EB73501B129B Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:24Z' status: 200 OK code: 200 - duration: 61.4822ms + duration: 1.040086916s - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 7844 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d995307","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":"3439496075272322378"}},"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":"9361355072579733249"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":false},"anonymousPullEnabled":{"type":"bool","defaultValue":false},"dataEndpointEnabled":{"type":"bool","defaultValue":false},"encryption":{"type":"object","defaultValue":{"status":"disabled"}},"networkRuleBypassOptions":{"type":"string","defaultValue":"AzureServices"},"publicNetworkAccess":{"type":"string","defaultValue":"Enabled"},"sku":{"type":"object","defaultValue":{"name":"Basic"}},"zoneRedundancy":{"type":"string","defaultValue":"Disabled"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-01-01-preview","name":"[format(''cr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":"[parameters(''sku'')]","properties":{"adminUserEnabled":"[parameters(''adminUserEnabled'')]","anonymousPullEnabled":"[parameters(''anonymousPullEnabled'')]","dataEndpointEnabled":"[parameters(''dataEndpointEnabled'')]","encryption":"[parameters(''encryption'')]","networkRuleBypassOptions":"[parameters(''networkRuleBypassOptions'')]","publicNetworkAccess":"[parameters(''publicNetworkAccess'')]","zoneRedundancy":"[parameters(''zoneRedundancy'')]"}},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2022-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''log-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''log-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"retentionInDays":30,"features":{"searchVersion":1},"sku":{"name":"PerGB2018"}}},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"containerRegistryName":{"type":"string","value":"[format(''cr{0}'', variables(''resourceToken''))]"},"containerAppsEnvironmentName":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"containerRegistryloginServer":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''cr{0}'', variables(''resourceToken''))), ''2023-01-01-preview'').loginServer]"},"managedIdentityId":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryName.value]"},"AZURE_CONTAINER_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerAppsEnvironmentName.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.containerRegistryloginServer.value]"},"SERVICE_WEB_IDENTITY_ID":{"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.managedIdentityId.value]"}}}},"tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"}}' form: {} headers: Accept: @@ -784,30 +780,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "7844" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w39e10d%27&api-version=2021-04-01 - method: GET + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 1411 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","name":"rg-azdtest-w39e10d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","DeleteAfter":"2026-01-23T01:09:47Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T21:04:26Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T20:04:26.2320345Z","duration":"PT0.0006191S","correlationId":"beb986a9dc65dc58534a20f757c667d8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d995307"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041/operationStatuses/08584258418192310996?api-version=2021-04-01&t=639113618665132904&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=s575OfJaQdg2uSc2DoWPxgWIOWIlIh2CU0VmzvtnsPSfoxcdTg0NQlGvEkc-_7tf0xPi85wqEwlO0gGINwCc_gUPnz_42of05blSP2-TdVqhAgrqUcskl8Crf9SSSZ8KVUi1vj0-tf_LnJPf_ZU4NL7tE4N7AKytDFyT0z7G8ES10RiHLgPfwBhgBo59Jg-qhKVwAGN51FtpopmYO_xNWmLQimeofIOhKmZGICTiTT50oCUQVKXlStWyLI0tjgykgzpZ1Ktrroo53nsXySdkUMsDU1kR53EkZR7OpSnZuKlwxY6bagvl6_x_ieZVS6_8YmLVAMcDr2HU3mkbKomnVA&h=8fr_3iq-o-uw_xmodBHyiTehL9b-NH4y7Hv8iqk9foc Cache-Control: - no-cache Content-Length: - - "325" + - "1411" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:29 GMT + - Thu, 09 Apr 2026 20:04:26 GMT Expires: - "-1" Pragma: @@ -819,20 +821,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - beb986a9dc65dc58534a20f757c667d8 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - f631ffe2-a245-4fa8-b4ad-c2f14e576158 + - 70ba3635-e441-437f-8c52-3cd7c5ea4748 X-Ms-Routing-Request-Id: - - WESTUS:20260123T001530Z:f631ffe2-a245-4fa8-b4ad-c2f14e576158 + - EASTUS2:20260409T200426Z:70ba3635-e441-437f-8c52-3cd7c5ea4748 X-Msedge-Ref: - - 'Ref A: 8C3695E4631B4A469B1D51D7111DFB28 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:30Z' - status: 200 OK - code: 200 - duration: 80.3351ms + - 'Ref A: C1AB26E41EDD4B49A7B4E022DA310CF2 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:04:26Z' + status: 201 Created + code: 201 + duration: 539.199667ms - id: 12 request: proto: HTTP/1.1 @@ -847,17 +851,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041/operationStatuses/08584258418192310996?api-version=2021-04-01&t=639113618665132904&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=s575OfJaQdg2uSc2DoWPxgWIOWIlIh2CU0VmzvtnsPSfoxcdTg0NQlGvEkc-_7tf0xPi85wqEwlO0gGINwCc_gUPnz_42of05blSP2-TdVqhAgrqUcskl8Crf9SSSZ8KVUi1vj0-tf_LnJPf_ZU4NL7tE4N7AKytDFyT0z7G8ES10RiHLgPfwBhgBo59Jg-qhKVwAGN51FtpopmYO_xNWmLQimeofIOhKmZGICTiTT50oCUQVKXlStWyLI0tjgykgzpZ1Ktrroo53nsXySdkUMsDU1kR53EkZR7OpSnZuKlwxY6bagvl6_x_ieZVS6_8YmLVAMcDr2HU3mkbKomnVA&h=8fr_3iq-o-uw_xmodBHyiTehL9b-NH4y7Hv8iqk9foc method: GET response: proto: HTTP/2.0 @@ -865,18 +867,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 22 uncompressed: false - body: '{"value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:30 GMT + - Thu, 09 Apr 2026 20:05:57 GMT Expires: - "-1" Pragma: @@ -888,20 +890,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 41c76534-b115-40a6-b89e-dabc997a0902 + - eda6a598-d213-4317-ad8d-b07de05fda6a X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001530Z:41c76534-b115-40a6-b89e-dabc997a0902 + - EASTUS:20260409T200557Z:eda6a598-d213-4317-ad8d-b07de05fda6a X-Msedge-Ref: - - 'Ref A: BA5312F2A7374882AF7788A7620A6721 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:30Z' + - 'Ref A: C6343CB633DE4E9894706EE5D1F5B8ED Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:05:57Z' status: 200 OK code: 200 - duration: 430.101ms + duration: 309.907125ms - id: 13 request: proto: HTTP/1.1 @@ -916,17 +918,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w39e10d%27&api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -934,18 +934,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 2905 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","name":"rg-azdtest-w39e10d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","DeleteAfter":"2026-01-23T01:09:47Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T21:04:26Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:05:39.3971824Z","duration":"PT1M13.1651479S","correlationId":"beb986a9dc65dc58534a20f757c667d8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d995307"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crau3ymjg7jhwlm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-au3ymjg7jhwlm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crau3ymjg7jhwlm.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm/providers/Microsoft.Authorization/roleAssignments/001878a2-b549-5096-958e-d89eda2e8f47"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "2905" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:30 GMT + - Thu, 09 Apr 2026 20:05:57 GMT Expires: - "-1" Pragma: @@ -957,82 +957,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 41468e41-eb27-4759-9de6-2bba121ccf63 + - 7fe390bf-9164-497c-b7a5-626ac11d5b47 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260123T001530Z:41468e41-eb27-4759-9de6-2bba121ccf63 + - EASTUS:20260409T200557Z:7fe390bf-9164-497c-b7a5-626ac11d5b47 X-Msedge-Ref: - - 'Ref A: 05264C30330647AAB9E24886F7F5D1B3 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:30Z' + - 'Ref A: 162DA58B30E647AB80FE4024F0374DBD Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:05:57Z' status: 200 OK code: 200 - duration: 113.0649ms + duration: 133.679417ms - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: -1 - transfer_encoding: - - chunked - trailer: {} - host: cre2rj2pxpf4tdc.azurecr.io - remote_addr: "" - request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=cre2rj2pxpf4tdc.azurecr.io - form: - access_token: - - SANITIZED - grant_type: - - access_token - service: - - cre2rj2pxpf4tdc.azurecr.io - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://cre2rj2pxpf4tdc.azurecr.io:443/oauth2/exchange - method: POST - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: false - body: '{"refresh_token":"SANITIZED"}' - headers: - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 23 Jan 2026 00:15:31 GMT - Server: - - AzureContainerRegistry - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - X-Ms-Ratelimit-Remaining-Calls-Per-Second: - - "166.65" - status: 200 OK - code: 200 - duration: 315.1328ms - - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1053,10 +992,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w39e10d%27&api-version=2021-04-01 + - beb986a9dc65dc58534a20f757c667d8 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d995307%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1066,7 +1005,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","name":"rg-azdtest-w39e10d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","DeleteAfter":"2026-01-23T01:09:47Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","name":"rg-azdtest-d995307","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","DeleteAfter":"2026-04-09T21:04:26Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1075,7 +1014,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:15:44 GMT + - Thu, 09 Apr 2026 20:06:00 GMT Expires: - "-1" Pragma: @@ -1087,21 +1026,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f + - beb986a9dc65dc58534a20f757c667d8 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a6f41ee0-3bad-4d98-b42b-1a6604f4a6ce + - e1ff44e1-646b-44d3-be3c-f876706bab35 X-Ms-Routing-Request-Id: - - CENTRALUS:20260123T001544Z:a6f41ee0-3bad-4d98-b42b-1a6604f4a6ce + - EASTUS2:20260409T200600Z:e1ff44e1-646b-44d3-be3c-f876706bab35 X-Msedge-Ref: - - 'Ref A: 397BEDFB192F401D975AD248B313320F Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:44Z' + - 'Ref A: D1B6D2273E934C6B8FE3F7F04B720B11 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:00Z' status: 200 OK code: 200 - duration: 243.9681ms - - id: 16 + duration: 168.026958ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1109,23 +1048,19 @@ 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 User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -1133,44 +1068,3265 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 138770 uncompressed: false - body: '{"value":[]}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "12" + - "138770" + 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, 23 Jan 2026 00:15:44 GMT + - Thu, 09 Apr 2026 20:06:00 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 20:11:00 GMT + Source-Age: + - "159" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 996ed92f-177d-4671-97e5-5c6b0d091bf2 - X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001544Z:996ed92f-177d-4671-97e5-5c6b0d091bf2 - X-Msedge-Ref: - - 'Ref A: 7E691AECBF2548C5B767713AA80534A3 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:44Z' + X-Fastly-Request-Id: + - 0e42c40d0fbf9dfc6893ef18f5a33a8d1969d129 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760041-MIA + X-Timer: + - S1775765161.984468,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 218.9955ms - - id: 17 + duration: 101.258333ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1178,144 +4334,4474 @@ 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; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w39e10d%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/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 0 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","name":"rg-azdtest-w39e10d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","DeleteAfter":"2026-01-23T01:09:47Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "325" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Fri, 23 Jan 2026 00:15:44 GMT + - Thu, 09 Apr 2026 20:06:01 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 20:06:01 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 2a40a31c-dfcb-42ed-b183-f31b91909580 - X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001545Z:2a40a31c-dfcb-42ed-b183-f31b91909580 - X-Msedge-Ref: - - 'Ref A: FA8B2DD00BBB47D99E0244591679FE4E Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:45Z' - status: 200 OK - code: 200 - duration: 105.9634ms - - id: 18 + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 326.429875ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 27574 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"properties":{"mode":"Incremental","parameters":{"containerAppsEnvironmentName":{"value":"cae-e2rj2pxpf4tdc","reference":null},"containerRegistryName":{"value":"cre2rj2pxpf4tdc","reference":null},"environmentName":{"value":"azdtest-w39e10d","reference":null},"identityId":{"value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc","reference":null},"imageName":{"value":"cre2rj2pxpf4tdc.azurecr.io/containerapp/web-azdtest-w39e10d:azd-deploy-1769126940","reference":null},"location":{"value":"eastus2","reference":null}},"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":"2299578518847698082"}},"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","minLength":1,"metadata":{"description":"Primary location for all resources"}},"containerRegistryName":{"type":"string"},"containerAppsEnvironmentName":{"type":"string"},"imageName":{"type":"string"},"identityId":{"type":"string"}},"resources":[{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"web","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"name":{"value":"web"},"ingressTargetPort":{"value":8080},"scaleMinReplicas":{"value":1},"scaleMaxReplicas":{"value":10},"secrets":{"value":{"secureList":[]}},"containers":{"value":[{"image":"[parameters(''imageName'')]","name":"main","resources":{"cpu":"[json(''0.5'')]","memory":"1.0Gi"}}]},"managedIdentities":{"value":{"systemAssigned":false,"userAssignedResourceIds":["[parameters(''identityId'')]"]}},"registries":{"value":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', parameters(''containerRegistryName'')), ''2023-01-01-preview'').loginServer]","identity":"[parameters(''identityId'')]"}]},"environmentResourceId":{"value":"[resourceId(''Microsoft.App/managedEnvironments'', parameters(''containerAppsEnvironmentName''))]"},"location":{"value":"[parameters(''location'')]"},"tags":{"value":{"azd-env-name":"[parameters(''environmentName'')]","azd-service-name":"web"}}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"6290070069549338411"},"name":"Container Apps","description":"This module deploys a Container App.","owner":"Azure/module-maintainers"},"definitions":{"managedIdentitiesType":{"type":"object","properties":{"systemAssigned":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Enables system assigned managed identity on the resource."}},"userAssignedResourceIds":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. The resource ID(s) to assign to the resource."}}},"nullable":true},"lockType":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Specify the name of lock."}},"kind":{"type":"string","allowedValues":["CanNotDelete","None","ReadOnly"],"nullable":true,"metadata":{"description":"Optional. Specify the type of lock."}}},"nullable":true},"roleAssignmentType":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. The name (as GUID) of the role assignment. If not provided, a GUID will be generated."}},"roleDefinitionIdOrName":{"type":"string","metadata":{"description":"Required. The role to assign. You can provide either the display name of the role definition, the role definition GUID, or its fully qualified ID in the following format: ''/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11''."}},"principalId":{"type":"string","metadata":{"description":"Required. The principal ID of the principal (user/group/identity) to assign the role to."}},"principalType":{"type":"string","allowedValues":["Device","ForeignGroup","Group","ServicePrincipal","User"],"nullable":true,"metadata":{"description":"Optional. The principal type of the assigned principal ID."}},"description":{"type":"string","nullable":true,"metadata":{"description":"Optional. The description of the role assignment."}},"condition":{"type":"string","nullable":true,"metadata":{"description":"Optional. The conditions on the role assignment. This limits the resources it can be assigned to. e.g.: @Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase \"foo_storage_container\"."}},"conditionVersion":{"type":"string","allowedValues":["2.0"],"nullable":true,"metadata":{"description":"Optional. Version of the condition."}},"delegatedManagedIdentityResourceId":{"type":"string","nullable":true,"metadata":{"description":"Optional. The Resource Id of the delegated managed identity resource."}}}},"nullable":true},"container":{"type":"object","properties":{"args":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command arguments."}},"command":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command."}},"env":{"type":"array","items":{"$ref":"#/definitions/environmentVar"},"nullable":true,"metadata":{"description":"Optional. Container environment variables."}},"image":{"type":"string","metadata":{"description":"Required. Container image tag."}},"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Custom container name."}},"probes":{"type":"array","items":{"$ref":"#/definitions/containerAppProbe"},"nullable":true,"metadata":{"description":"Optional. List of probes for the container."}},"resources":{"type":"object","metadata":{"description":"Required. Container resource requirements."}},"volumeMounts":{"type":"array","items":{"$ref":"#/definitions/volumeMount"},"nullable":true,"metadata":{"description":"Optional. Container volume mounts."}}}},"environmentVar":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Environment variable name."}},"secretRef":{"type":"string","nullable":true,"metadata":{"description":"Optional. Name of the Container App secret from which to pull the environment variable value."}},"value":{"type":"string","nullable":true,"metadata":{"description":"Optional. Non-secret environment variable value."}}}},"containerAppProbe":{"type":"object","properties":{"failureThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3."}},"httpGet":{"$ref":"#/definitions/containerAppProbeHttpGet","nullable":true,"metadata":{"description":"Optional. HTTPGet specifies the http request to perform."}},"initialDelaySeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":60,"metadata":{"description":"Optional. Number of seconds after the container has started before liveness probes are initiated."}},"periodSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. How often (in seconds) to perform the probe. Default to 10 seconds."}},"successThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup."}},"tcpSocket":{"$ref":"#/definitions/containerAppProbeTcpSocket","nullable":true,"metadata":{"description":"Optional. TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported."}},"terminationGracePeriodSeconds":{"type":"int","nullable":true,"metadata":{"description":"Optional. Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod''s terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)."}},"timeoutSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. Number of seconds after which the probe times out. Defaults to 1 second."}},"type":{"type":"string","allowedValues":["Liveness","Readiness","Startup"],"nullable":true,"metadata":{"description":"Optional. The type of probe."}}}},"corsPolicyType":{"type":"object","properties":{"allowCredentials":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Switch to determine whether the resource allows credentials."}},"allowedHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-headers header."}},"allowedMethods":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-methods header."}},"allowedOrigins":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-origins header."}},"exposeHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-expose-headers header."}},"maxAge":{"type":"int","nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-max-age header."}}},"nullable":true},"containerAppProbeHttpGet":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to. Defaults to the pod IP."}},"httpHeaders":{"type":"array","items":{"$ref":"#/definitions/containerAppProbeHttpGetHeadersItem"},"nullable":true,"metadata":{"description":"Optional. HTTP headers to set in the request."}},"path":{"type":"string","metadata":{"description":"Required. Path to access on the HTTP server."}},"port":{"type":"int","metadata":{"description":"Required. Name or number of the port to access on the container."}},"scheme":{"type":"string","allowedValues":["HTTP","HTTPS"],"nullable":true,"metadata":{"description":"Optional. Scheme to use for connecting to the host. Defaults to HTTP."}}}},"containerAppProbeHttpGetHeadersItem":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Name of the header."}},"value":{"type":"string","metadata":{"description":"Required. Value of the header."}}}},"containerAppProbeTcpSocket":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to, defaults to the pod IP."}},"port":{"type":"int","minValue":1,"maxValue":65535,"metadata":{"description":"Required. Number of the port to access on the container. Name must be an IANA_SVC_NAME."}}}},"volumeMount":{"type":"object","properties":{"mountPath":{"type":"string","metadata":{"description":"Required. Path within the container at which the volume should be mounted.Must not contain '':''."}},"subPath":{"type":"string","nullable":true,"metadata":{"description":"Optional. Path within the volume from which the container''s volume should be mounted. Defaults to \"\" (volume''s root)."}},"volumeName":{"type":"string","metadata":{"description":"Required. This must match the Name of a Volume."}}}}},"parameters":{"name":{"type":"string","metadata":{"description":"Required. Name of the Container App."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Optional. Location for all Resources."}},"disableIngress":{"type":"bool","defaultValue":false,"metadata":{"description":"Optional. Bool to disable all ingress traffic for the container app."}},"ingressExternal":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if the App exposes an external HTTP endpoint."}},"clientCertificateMode":{"type":"string","defaultValue":"ignore","allowedValues":["accept","ignore","require"],"metadata":{"description":"Optional. Client certificate mode for mTLS."}},"corsPolicy":{"$ref":"#/definitions/corsPolicyType","metadata":{"description":"Optional. Object userd to configure CORS policy."}},"stickySessionsAffinity":{"type":"string","defaultValue":"none","allowedValues":["none","sticky"],"metadata":{"description":"Optional. Bool indicating if the Container App should enable session affinity."}},"ingressTransport":{"type":"string","defaultValue":"auto","allowedValues":["auto","http","http2","tcp"],"metadata":{"description":"Optional. Ingress transport protocol."}},"ingressAllowInsecure":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections."}},"ingressTargetPort":{"type":"int","defaultValue":80,"metadata":{"description":"Optional. Target Port in containers for traffic from ingress."}},"scaleMaxReplicas":{"type":"int","defaultValue":10,"metadata":{"description":"Optional. Maximum number of container replicas. Defaults to 10 if not set."}},"scaleMinReplicas":{"type":"int","defaultValue":3,"metadata":{"description":"Optional. Minimum number of container replicas. Defaults to 3 if not set."}},"scaleRules":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Scaling rules."}},"activeRevisionsMode":{"type":"string","defaultValue":"Single","allowedValues":["Multiple","Single"],"metadata":{"description":"Optional. Controls how active revisions are handled for the Container app."}},"environmentResourceId":{"type":"string","metadata":{"description":"Required. Resource ID of environment."}},"lock":{"$ref":"#/definitions/lockType","metadata":{"description":"Optional. The lock settings of the service."}},"tags":{"type":"object","nullable":true,"metadata":{"description":"Optional. Tags of the resource."}},"registries":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Collection of private container registry credentials for containers used by the Container app."}},"managedIdentities":{"$ref":"#/definitions/managedIdentitiesType","metadata":{"description":"Optional. The managed identity definition for this resource."}},"roleAssignments":{"$ref":"#/definitions/roleAssignmentType","metadata":{"description":"Optional. Array of role assignments to create."}},"enableTelemetry":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Enable/Disable usage telemetry for module."}},"customDomains":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Custom domain bindings for Container App hostnames."}},"exposedPort":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Exposed Port in containers for TCP traffic from ingress."}},"ipSecurityRestrictions":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Rules to restrict incoming IP address."}},"trafficLabel":{"type":"string","defaultValue":"label-1","metadata":{"description":"Optional. Associates a traffic label with a revision. Label name should be consist of lower case alphanumeric characters or dashes."}},"trafficLatestRevision":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Indicates that the traffic weight belongs to a latest stable revision."}},"trafficRevisionName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Name of a revision."}},"trafficWeight":{"type":"int","defaultValue":100,"metadata":{"description":"Optional. Traffic weight assigned to a revision."}},"dapr":{"type":"object","defaultValue":{},"metadata":{"description":"Optional. Dapr configuration for the Container App."}},"maxInactiveRevisions":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Max inactive revisions a Container App can have."}},"containers":{"type":"array","items":{"$ref":"#/definitions/container"},"metadata":{"description":"Required. List of container definitions for the Container App."}},"initContainersTemplate":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of specialized containers that run before app containers."}},"secrets":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Optional. The secrets of the Container App."}},"revisionSuffix":{"type":"string","defaultValue":"","metadata":{"description":"Optional. User friendly suffix that is appended to the revision name."}},"volumes":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of volume definitions for the Container App."}},"workloadProfileName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Workload profile name to pin for container app execution."}}},"variables":{"copy":[{"name":"formattedRoleAssignments","count":"[length(coalesce(parameters(''roleAssignments''), createArray()))]","input":"[union(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')], createObject(''roleDefinitionId'', coalesce(tryGet(variables(''builtInRoleNames''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName), if(contains(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, ''/providers/Microsoft.Authorization/roleDefinitions/''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName)))))]"}],"secretList":"[if(not(empty(parameters(''secrets''))), parameters(''secrets'').secureList, createArray())]","formattedUserAssignedIdentities":"[reduce(map(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createArray()), lambda(''id'', createObject(format(''{0}'', lambdaVariables(''id'')), createObject()))), createObject(), lambda(''cur'', ''next'', union(lambdaVariables(''cur''), lambdaVariables(''next''))))]","identity":"[if(not(empty(parameters(''managedIdentities''))), createObject(''type'', if(coalesce(tryGet(parameters(''managedIdentities''), ''systemAssigned''), false()), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''SystemAssigned,UserAssigned'', ''SystemAssigned''), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''UserAssigned'', ''None'')), ''userAssignedIdentities'', if(not(empty(variables(''formattedUserAssignedIdentities''))), variables(''formattedUserAssignedIdentities''), null())), null())]","builtInRoleNames":{"ContainerApp Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b'')]","Contributor":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]","Owner":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''8e3af657-a8ff-443c-a75c-2fe8c4bcb635'')]","Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''acdd72a7-3385-48ef-bd42-f606fba81ae7'')]","Role Based Access Control Administrator (Preview)":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''f58310d9-a9f6-439a-9e8d-f62e7b41a168'')]","User Access Administrator":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''18d7d88d-d35e-4fb5-a5c3-7773c20a72d9'')]"}},"resources":{"avmTelemetry":{"condition":"[parameters(''enableTelemetry'')]","type":"Microsoft.Resources/deployments","apiVersion":"2024-03-01","name":"[format(''46d3xbcp.res.app-containerapp.{0}.{1}'', replace(''0.8.0'', ''.'', ''-''), substring(uniqueString(deployment().name, parameters(''location'')), 0, 4))]","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[],"outputs":{"telemetry":{"type":"String","value":"For more information, see https://aka.ms/avm/TelemetryInfo"}}}}},"containerApp":{"type":"Microsoft.App/containerApps","apiVersion":"2023-05-01","name":"[parameters(''name'')]","tags":"[parameters(''tags'')]","location":"[parameters(''location'')]","identity":"[variables(''identity'')]","properties":{"environmentId":"[parameters(''environmentResourceId'')]","configuration":{"activeRevisionsMode":"[parameters(''activeRevisionsMode'')]","dapr":"[if(not(empty(parameters(''dapr''))), parameters(''dapr''), null())]","ingress":"[if(parameters(''disableIngress''), null(), createObject(''allowInsecure'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''ingressAllowInsecure''), false()), ''customDomains'', if(not(empty(parameters(''customDomains''))), parameters(''customDomains''), null()), ''corsPolicy'', if(and(not(equals(parameters(''corsPolicy''), null())), not(equals(parameters(''ingressTransport''), ''tcp''))), createObject(''allowCredentials'', coalesce(tryGet(parameters(''corsPolicy''), ''allowCredentials''), false()), ''allowedHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedHeaders''), createArray()), ''allowedMethods'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedMethods''), createArray()), ''allowedOrigins'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedOrigins''), createArray()), ''exposeHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''exposeHeaders''), createArray()), ''maxAge'', tryGet(parameters(''corsPolicy''), ''maxAge'')), null()), ''clientCertificateMode'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''clientCertificateMode''), null()), ''exposedPort'', parameters(''exposedPort''), ''external'', parameters(''ingressExternal''), ''ipSecurityRestrictions'', if(not(empty(parameters(''ipSecurityRestrictions''))), parameters(''ipSecurityRestrictions''), null()), ''targetPort'', parameters(''ingressTargetPort''), ''stickySessions'', createObject(''affinity'', parameters(''stickySessionsAffinity'')), ''traffic'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), createArray(createObject(''label'', parameters(''trafficLabel''), ''latestRevision'', parameters(''trafficLatestRevision''), ''revisionName'', parameters(''trafficRevisionName''), ''weight'', parameters(''trafficWeight''))), null()), ''transport'', parameters(''ingressTransport'')))]","maxInactiveRevisions":"[parameters(''maxInactiveRevisions'')]","registries":"[if(not(empty(parameters(''registries''))), parameters(''registries''), null())]","secrets":"[variables(''secretList'')]"},"template":{"containers":"[parameters(''containers'')]","initContainers":"[if(not(empty(parameters(''initContainersTemplate''))), parameters(''initContainersTemplate''), null())]","revisionSuffix":"[parameters(''revisionSuffix'')]","scale":{"maxReplicas":"[parameters(''scaleMaxReplicas'')]","minReplicas":"[parameters(''scaleMinReplicas'')]","rules":"[if(not(empty(parameters(''scaleRules''))), parameters(''scaleRules''), null())]"},"volumes":"[if(not(empty(parameters(''volumes''))), parameters(''volumes''), null())]"},"workloadProfileName":"[parameters(''workloadProfileName'')]"}},"containerApp_lock":{"condition":"[and(not(empty(coalesce(parameters(''lock''), createObject()))), not(equals(tryGet(parameters(''lock''), ''kind''), ''None'')))]","type":"Microsoft.Authorization/locks","apiVersion":"2020-05-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(parameters(''lock''), ''name''), format(''lock-{0}'', parameters(''name'')))]","properties":{"level":"[coalesce(tryGet(parameters(''lock''), ''kind''), '''')]","notes":"[if(equals(tryGet(parameters(''lock''), ''kind''), ''CanNotDelete''), ''Cannot delete resource or child resources.'', ''Cannot delete or modify the resource or child resources.'')]"},"dependsOn":["containerApp"]},"containerApp_roleAssignments":{"copy":{"name":"containerApp_roleAssignments","count":"[length(coalesce(variables(''formattedRoleAssignments''), createArray()))]"},"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''name''), guid(resourceId(''Microsoft.App/containerApps'', parameters(''name'')), coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId, coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId))]","properties":{"roleDefinitionId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId]","principalId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId]","description":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''description'')]","principalType":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''principalType'')]","condition":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition'')]","conditionVersion":"[if(not(empty(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition''))), coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''conditionVersion''), ''2.0''), null())]","delegatedManagedIdentityResourceId":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''delegatedManagedIdentityResourceId'')]"},"dependsOn":["containerApp"]}},"outputs":{"resourceId":{"type":"string","metadata":{"description":"The resource ID of the Container App."},"value":"[resourceId(''Microsoft.App/containerApps'', parameters(''name''))]"},"fqdn":{"type":"string","metadata":{"description":"The configuration of ingress fqdn."},"value":"[if(parameters(''disableIngress''), ''IngressDisabled'', reference(''containerApp'').configuration.ingress.fqdn)]"},"resourceGroupName":{"type":"string","metadata":{"description":"The name of the resource group the Container App was deployed into."},"value":"[resourceGroup().name]"},"name":{"type":"string","metadata":{"description":"The name of the Container App."},"value":"[parameters(''name'')]"},"systemAssignedMIPrincipalId":{"type":"string","metadata":{"description":"The principal ID of the system assigned identity."},"value":"[coalesce(tryGet(tryGet(reference(''containerApp'', ''2023-05-01'', ''full''), ''identity''), ''principalId''), '''')]"},"location":{"type":"string","metadata":{"description":"The location the resource was deployed into."},"value":"[reference(''containerApp'', ''2023-05-01'', ''full'').location]"}}}}}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Resources/deployments'', ''web''), ''2025-04-01'').outputs.fqdn.value)]"}}}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "27574" - Content-Type: - - application/json + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web-1769126940?api-version=2021-04-01 - method: PUT + - 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 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1677 + content_length: 195006 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web-1769126940","name":"web-1769126940","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2299578518847698082","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"cre2rj2pxpf4tdc"},"containerAppsEnvironmentName":{"type":"String","value":"cae-e2rj2pxpf4tdc"},"imageName":{"type":"String","value":"cre2rj2pxpf4tdc.azurecr.io/containerapp/web-azdtest-w39e10d:azd-deploy-1769126940"},"identityId":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-23T00:15:49.0204808Z","duration":"PT0.0001568S","correlationId":"219852ae7648a3a65c9068c7a1c4032f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"cre2rj2pxpf4tdc","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}]}}' + 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" + } + } + } + ] + }, + { + "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: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web-1769126940/operationStatuses/08584324795364516897?api-version=2021-04-01&t=639047241493642264&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=c1ukFktI6EEwL54u2LIju0trZBqJK0S7bPsNslDmh2C_8Tfn1u933kNgeIaZRTbxy80u-RasMadXAxvagMPKsyVCyQmSQ1oa-nf9pdsCj-f9en3ox2mhez_ccJV9_KSG1P8udglYa1X0BnfFrpVMD7wnFpd0oGvgwDBg2nKsnHlExjz4vbLm7syFJM33Q3OK9Q8DJ1L6zjlELeJOISwqWfpajW5wbzBYUZlwbENlZ5AtwNt-Fge4PwxDUvbOx3xa89qWLpkpFiuDB4bD1Sf0KwMV3ZViTbV5XwGmJNE4p2eoUeQX-y-2s-lRSzSU8TJi_weiXVHhSwwNaflEFn59Ow&h=tEEhB6W16mRcc3vjtX6Ui8tUlzX2GWztPGQnFh5Skx0 + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "1677" + - "195006" + 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, 23 Jan 2026 00:15:49 GMT + - Thu, 09 Apr 2026 20:06:01 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 20:11:01 GMT + Source-Age: + - "188" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - X-Ms-Deployment-Engine-Version: - - 1.560.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - 890641fe-1f22-4f72-926c-0a1448b1d9d6 - X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001549Z:890641fe-1f22-4f72-926c-0a1448b1d9d6 - X-Msedge-Ref: - - 'Ref A: A4815C79AE5541F49C1C6F92B00EAA18 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:15:48Z' - status: 201 Created - code: 201 - duration: 638.1217ms + X-Fastly-Request-Id: + - d7b90f3f3e3d8d61cfa699eb1dea105d001b6d03 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760041-MIA + X-Timer: + - S1775765161.347935,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 24.004875ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 20:06:01 GMT + Expires: + - Thu, 09 Apr 2026 20:06:01 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 438.605792ms - id: 19 request: proto: HTTP/1.1 @@ -1324,7 +8810,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -1334,11 +8820,11 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web-1769126940/operationStatuses/08584324795364516897?api-version=2021-04-01&t=639047241493642264&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=c1ukFktI6EEwL54u2LIju0trZBqJK0S7bPsNslDmh2C_8Tfn1u933kNgeIaZRTbxy80u-RasMadXAxvagMPKsyVCyQmSQ1oa-nf9pdsCj-f9en3ox2mhez_ccJV9_KSG1P8udglYa1X0BnfFrpVMD7wnFpd0oGvgwDBg2nKsnHlExjz4vbLm7syFJM33Q3OK9Q8DJ1L6zjlELeJOISwqWfpajW5wbzBYUZlwbENlZ5AtwNt-Fge4PwxDUvbOx3xa89qWLpkpFiuDB4bD1Sf0KwMV3ZViTbV5XwGmJNE4p2eoUeQX-y-2s-lRSzSU8TJi_weiXVHhSwwNaflEFn59Ow&h=tEEhB6W16mRcc3vjtX6Ui8tUlzX2GWztPGQnFh5Skx0 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json method: GET response: proto: HTTP/2.0 @@ -1346,44 +8832,1437 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 41722 uncompressed: false - body: '{"status":"Succeeded"}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "22" + - "41722" + 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, 23 Jan 2026 00:16:19 GMT + - Thu, 09 Apr 2026 20:06:01 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 20:11:01 GMT + Source-Age: + - "159" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - f1f19555-ed43-47af-bd17-eaad6d69bce9 - X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001619Z:f1f19555-ed43-47af-bd17-eaad6d69bce9 - X-Msedge-Ref: - - 'Ref A: 68EEE597F4A441D38898BD11D76678C4 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:19Z' + X-Fastly-Request-Id: + - cd4f78a42941b2ddc6a93c9d4d15039de0656af2 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760041-MIA + X-Timer: + - S1775765162.832934,VS0,VE22 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 300.3866ms + duration: 42.545917ms - id: 20 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 20:06:01 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 20:11:01 GMT + Source-Age: + - "159" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 1946e6d5c33e67fb8559341b6f81660783343e2b + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760041-MIA + X-Timer: + - S1775765162.884611,VS0,VE3 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 21.272416ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1397,15 +10276,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web-1769126940?api-version=2021-04-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d995307%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1413,18 +10294,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 325 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web-1769126940","name":"web-1769126940","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2299578518847698082","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"cre2rj2pxpf4tdc"},"containerAppsEnvironmentName":{"type":"String","value":"cae-e2rj2pxpf4tdc"},"imageName":{"type":"String","value":"cre2rj2pxpf4tdc.azurecr.io/containerapp/web-azdtest-w39e10d:azd-deploy-1769126940"},"identityId":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:16:11.7582429Z","duration":"PT22.7377621S","correlationId":"219852ae7648a3a65c9068c7a1c4032f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"cre2rj2pxpf4tdc","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"websitE_URL":{"type":"String","value":"https://web.kindsky-6f33b995.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/containerApps/web"}]}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","name":"rg-azdtest-d995307","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","DeleteAfter":"2026-04-09T21:04:26Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1949" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:19 GMT + - Thu, 09 Apr 2026 20:06:02 GMT Expires: - "-1" Pragma: @@ -1436,21 +10317,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fcc3a290-3c7a-4bc9-9447-241b4b75dab5 + - e2c94bba-8b62-474d-8f62-0f385c83a438 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001619Z:fcc3a290-3c7a-4bc9-9447-241b4b75dab5 + - EASTUS:20260409T200602Z:e2c94bba-8b62-474d-8f62-0f385c83a438 X-Msedge-Ref: - - 'Ref A: 16A5FAEE30F74A52AC5A0908EEC984D2 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:19Z' + - 'Ref A: 5C278E5935B24EFC96BA23F6A4DB45E1 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:02Z' status: 200 OK code: 200 - duration: 105.0969ms - - id: 21 + duration: 286.163708ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1471,10 +10352,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/containerApps/web?api-version=2025-01-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1482,50 +10363,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3010 + content_length: 12 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/containerapps/web","name":"web","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w39e10d","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:15:54.5735763","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:15:54.5735763"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc","workloadProfileName":null,"outboundIpAddresses":["135.224.191.92"],"latestRevisionName":"web--bjt3g60","latestReadyRevisionName":"web--bjt3g60","latestRevisionFqdn":"web--bjt3g60.kindsky-6f33b995.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"web.kindsky-6f33b995.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true,"label":"label-1"}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":"Ignore","stickySessions":{"affinity":"none"},"additionalPortMappings":null},"registries":[{"server":"cre2rj2pxpf4tdc.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}],"dapr":null,"runtime":null,"maxInactiveRevisions":0,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"cre2rj2pxpf4tdc.azurecr.io/containerapp/web-azdtest-w39e10d:azd-deploy-1769126940","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/containerApps/web/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc":{"principalId":"fb1aef14-0c43-4a29-8558-b4f9db4ca5d4","clientId":"cb1f50f0-80a9-4a00-9e60-2e934531b568"}}}}' + body: '{"value":[]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 Cache-Control: - no-cache Content-Length: - - "3010" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:19 GMT + - Thu, 09 Apr 2026 20:06:02 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3ab30370-4d6f-43b0-9c9a-46df222b2c7b + - 48c4bca6-9c50-4595-9541-f63330e3e7eb X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001620Z:3ab30370-4d6f-43b0-9c9a-46df222b2c7b + - EASTUS2:20260409T200603Z:48c4bca6-9c50-4595-9541-f63330e3e7eb X-Msedge-Ref: - - 'Ref A: 129EFEA2A75B48478133425CC3A2C767 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:20Z' - X-Powered-By: - - ASP.NET + - 'Ref A: 36EF7C5EE1CE4D83B98467FCE90D5EC0 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:02Z' status: 200 OK code: 200 - duration: 146.1958ms - - id: 22 + duration: 218.319917ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1546,10 +10421,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w39e10d%27&api-version=2021-04-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d995307%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1559,7 +10434,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","name":"rg-azdtest-w39e10d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","DeleteAfter":"2026-01-23T01:09:47Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","name":"rg-azdtest-d995307","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","DeleteAfter":"2026-04-09T21:04:26Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1568,7 +10443,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:19 GMT + - Thu, 09 Apr 2026 20:06:03 GMT Expires: - "-1" Pragma: @@ -1580,62 +10455,82 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 219852ae7648a3a65c9068c7a1c4032f + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6bb1325c-8d49-4b9d-86fc-307ae668e3d4 + - 65c5c174-c3ee-48c5-96fc-3ae6520a8a85 X-Ms-Routing-Request-Id: - - CENTRALUS:20260123T001620Z:6bb1325c-8d49-4b9d-86fc-307ae668e3d4 + - EASTUS2:20260409T200603Z:65c5c174-c3ee-48c5-96fc-3ae6520a8a85 X-Msedge-Ref: - - 'Ref A: 58B352C67C584820A04B2D382440BEF8 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:20Z' + - 'Ref A: E2898088000B4819B4B3B9E5EEC203CC Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:03Z' status: 200 OK code: 200 - duration: 92.271ms - - id: 23 + duration: 185.485875ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] + content_length: -1 + transfer_encoding: + - chunked trailer: {} - host: web.kindsky-6f33b995.eastus2.azurecontainerapps.io + host: crau3ymjg7jhwlm.azurecr.io remote_addr: "" request_uri: "" - body: "" - form: {} + body: access_token=SANITIZED&grant_type=access_token&service=crau3ymjg7jhwlm.azurecr.io + form: + access_token: + - SANITIZED + grant_type: + - access_token + service: + - crau3ymjg7jhwlm.azurecr.io headers: Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Type: + - application/x-www-form-urlencoded User-Agent: - - Go-http-client/1.1 - url: https://web.kindsky-6f33b995.eastus2.azurecontainerapps.io:443/ - method: GET + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 50f9e0feaf23b730184b19c457b819ec + url: https://crau3ymjg7jhwlm.azurecr.io:443/oauth2/exchange + method: POST response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked trailer: {} content_length: -1 uncompressed: false - body: Hello, `azd`. + body: '{"refresh_token":"SANITIZED"}' headers: + Connection: + - keep-alive Content-Type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:32 GMT + - Thu, 09 Apr 2026 20:06:03 GMT Server: - - Kestrel + - AzureContainerRegistry + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Correlation-Request-Id: + - 50f9e0feaf23b730184b19c457b819ec + X-Ms-Ratelimit-Remaining-Calls-Per-Second: + - "166.65" status: 200 OK code: 200 - duration: 11.9014069s - - id: 24 + duration: 475.877666ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1656,10 +10551,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d995307%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1667,18 +10562,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969049 + content_length: 325 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=RY9db4IwGIV%2fC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2bO5OOdGdsH3rT9t%2bzZ4DK7xPyS%2fkQ9Ro63ZJH1z7t%2b33307EcvmQnJCo9cIcHOW101C4j%2fChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2fDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2b5eAF0GRZKQMSaimLaT3J%2b6LiagDM5nAtAUq%2f%2f08e%2fJ2GWtLM4fdhx%2fAQ%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","name":"rg-azdtest-d995307","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","DeleteAfter":"2026-04-09T21:04:26Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1969049" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:41 GMT + - Thu, 09 Apr 2026 20:06:16 GMT Expires: - "-1" Pragma: @@ -1690,21 +10585,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b258385b-1e7a-4b08-b8c8-3b4d51e06dd8 + - 8d5f86db-4450-49c4-8e77-f20565c65fdd X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260123T001642Z:b258385b-1e7a-4b08-b8c8-3b4d51e06dd8 + - EASTUS2:20260409T200616Z:8d5f86db-4450-49c4-8e77-f20565c65fdd X-Msedge-Ref: - - 'Ref A: 3E0EEB1213AA40DC8C9381A11BC128EF Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:37Z' + - 'Ref A: 804B6A24C66748E89D74547090A1DCC6 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:16Z' status: 200 OK code: 200 - duration: 5.3160131s - - id: 25 + duration: 144.643ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1718,15 +10613,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=RY9db4IwGIV%2FC72GhHZcLNyBLdFp367lrYu7M8oMlrTJhsGP8N8nM2Z35%2BO5OOdGdsH3rT9t%2BzZ4DK7xPyS%2FkQ9Ro63ZJH1z7t%2B33307EcvmQnJCo9cIcHOW101C4j%2FChOHZUZZGxlWl5IdB208urc6Al6XhHdfpupJWpIAl17ieAe6%2FDAW1qtNBcXvnJIOjvOtDJrm4KhQMWrowlpbWdUpjuJjKVJbqVB3fhMQdA%2B5eAF0GRZKQMSaimLaT3J%2B6LiagDM5nAtAUq%2F%2F08e%2FJ2GWtLM4fdhx%2FAQ%3D%3D&api-version=2021-04-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1734,18 +10631,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 343508 + content_length: 12 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2bZbwa%2b%2f0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2b7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2fUNTIY%2fG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2biO7xFVSSP2v%2bsrgYS5oidP0Cw%3d%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","location":"eastus2","name":"azdtest-w39e10d-1769126940","properties":{"correlationId":"7e589978ac0a1cb83effeb8c88391dd0","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","resourceName":"rg-azdtest-w39e10d","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT5M36.9797775S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc/providers/Microsoft.Authorization/roleAssignments/6ba2f458-f81e-5c30-bcaf-07bdbe1b51cd"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc"}],"outputs":{"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-e2rj2pxpf4tdc"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cre2rj2pxpf4tdc.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cre2rj2pxpf4tdc"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:47Z"},"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"17519074622280447864","timestamp":"2026-01-23T00:15:24.1230821Z"},"tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "343508" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:44 GMT + - Thu, 09 Apr 2026 20:06:16 GMT Expires: - "-1" Pragma: @@ -1757,21 +10654,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 91a12c54-23b4-4314-9120-f519c4bb0c83 + - f5cbf527-93f9-427a-941c-b7683ccf25ae X-Ms-Routing-Request-Id: - - WESTUS:20260123T001644Z:91a12c54-23b4-4314-9120-f519c4bb0c83 + - EASTUS2:20260409T200616Z:f5cbf527-93f9-427a-941c-b7683ccf25ae X-Msedge-Ref: - - 'Ref A: 9A94367AB44146B1BCDE1972B9DC8AB0 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:42Z' + - 'Ref A: E8CBD846E67D4C7A82B94778C490DF1F Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:16Z' status: 200 OK code: 200 - duration: 2.2534648s - - id: 26 + duration: 228.053292ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1785,15 +10682,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=dZDBaoNAEIafxT0ruCaB4k1d09Jkd7u7MxZ7C9YWjazQGrQG372J4qGHHv%2BZbwa%2B%2F0qK1naVvZy6qrXQnkv7TcIreU0NoAlIaC9N4xIjEZ6SVICOjmjW6QJt7rwth%2B7l9NVV9zeH8oeEhDoPjoB84GPuEXcmdNuvO7oJHH3ex5x99grfGEe1FSyONWuY8rM9x9QXEDMFWSLg%2FUNTIY%2FG7yXDG8cDUfNeQnRjilFC7suEKvCHZ0WbVGcxB9oIjTuUdfYoWLTlgON8OxY7ztTA62LkyvPI5JI0%2BiO7xFVSSP2v%2BsrgYS5oidP0Cw%3D%3D&api-version=2021-04-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d995307%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1801,18 +10700,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14077 + content_length: 325 uncompressed: false - body: '{"value":[]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","name":"rg-azdtest-d995307","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","DeleteAfter":"2026-04-09T21:04:26Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "14077" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:45 GMT + - Thu, 09 Apr 2026 20:06:16 GMT Expires: - "-1" Pragma: @@ -1824,32 +10723,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cf83e911-e98e-494d-afa2-b48b1581ab57 + - e1af6915-3a64-4645-bd99-0130ddb87d2d X-Ms-Routing-Request-Id: - - WESTUS:20260123T001645Z:cf83e911-e98e-494d-afa2-b48b1581ab57 + - EASTUS:20260409T200616Z:e1af6915-3a64-4645-bd99-0130ddb87d2d X-Msedge-Ref: - - 'Ref A: A546A68C6D8A443AAB613AA6A10F6D8C Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:45Z' + - 'Ref A: 0ECD71EDDF984599ABF8B6B05D752C3D Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:16Z' status: 200 OK code: 200 - duration: 442.9456ms - - id: 27 + duration: 347.340208ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 27575 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"properties":{"mode":"Incremental","parameters":{"containerAppsEnvironmentName":{"value":"cae-au3ymjg7jhwlm","reference":null},"containerRegistryName":{"value":"crau3ymjg7jhwlm","reference":null},"environmentName":{"value":"azdtest-d995307","reference":null},"identityId":{"value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm","reference":null},"imageName":{"value":"crau3ymjg7jhwlm.azurecr.io/containerapp/web-azdtest-d995307:azd-deploy-1775765041","reference":null},"location":{"value":"eastus2","reference":null}},"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":"12728900275957388763"}},"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","minLength":1,"metadata":{"description":"Primary location for all resources"}},"containerRegistryName":{"type":"string"},"containerAppsEnvironmentName":{"type":"string"},"imageName":{"type":"string"},"identityId":{"type":"string"}},"resources":[{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"web","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"name":{"value":"web"},"ingressTargetPort":{"value":8080},"scaleMinReplicas":{"value":1},"scaleMaxReplicas":{"value":10},"secrets":{"value":{"secureList":[]}},"containers":{"value":[{"image":"[parameters(''imageName'')]","name":"main","resources":{"cpu":"[json(''0.5'')]","memory":"1.0Gi"}}]},"managedIdentities":{"value":{"systemAssigned":false,"userAssignedResourceIds":["[parameters(''identityId'')]"]}},"registries":{"value":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', parameters(''containerRegistryName'')), ''2023-01-01-preview'').loginServer]","identity":"[parameters(''identityId'')]"}]},"environmentResourceId":{"value":"[resourceId(''Microsoft.App/managedEnvironments'', parameters(''containerAppsEnvironmentName''))]"},"location":{"value":"[parameters(''location'')]"},"tags":{"value":{"azd-env-name":"[parameters(''environmentName'')]","azd-service-name":"web"}}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"6290070069549338411"},"name":"Container Apps","description":"This module deploys a Container App.","owner":"Azure/module-maintainers"},"definitions":{"managedIdentitiesType":{"type":"object","properties":{"systemAssigned":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Enables system assigned managed identity on the resource."}},"userAssignedResourceIds":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. The resource ID(s) to assign to the resource."}}},"nullable":true},"lockType":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Specify the name of lock."}},"kind":{"type":"string","allowedValues":["CanNotDelete","None","ReadOnly"],"nullable":true,"metadata":{"description":"Optional. Specify the type of lock."}}},"nullable":true},"roleAssignmentType":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. The name (as GUID) of the role assignment. If not provided, a GUID will be generated."}},"roleDefinitionIdOrName":{"type":"string","metadata":{"description":"Required. The role to assign. You can provide either the display name of the role definition, the role definition GUID, or its fully qualified ID in the following format: ''/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11''."}},"principalId":{"type":"string","metadata":{"description":"Required. The principal ID of the principal (user/group/identity) to assign the role to."}},"principalType":{"type":"string","allowedValues":["Device","ForeignGroup","Group","ServicePrincipal","User"],"nullable":true,"metadata":{"description":"Optional. The principal type of the assigned principal ID."}},"description":{"type":"string","nullable":true,"metadata":{"description":"Optional. The description of the role assignment."}},"condition":{"type":"string","nullable":true,"metadata":{"description":"Optional. The conditions on the role assignment. This limits the resources it can be assigned to. e.g.: @Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase \"foo_storage_container\"."}},"conditionVersion":{"type":"string","allowedValues":["2.0"],"nullable":true,"metadata":{"description":"Optional. Version of the condition."}},"delegatedManagedIdentityResourceId":{"type":"string","nullable":true,"metadata":{"description":"Optional. The Resource Id of the delegated managed identity resource."}}}},"nullable":true},"container":{"type":"object","properties":{"args":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command arguments."}},"command":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Container start command."}},"env":{"type":"array","items":{"$ref":"#/definitions/environmentVar"},"nullable":true,"metadata":{"description":"Optional. Container environment variables."}},"image":{"type":"string","metadata":{"description":"Required. Container image tag."}},"name":{"type":"string","nullable":true,"metadata":{"description":"Optional. Custom container name."}},"probes":{"type":"array","items":{"$ref":"#/definitions/containerAppProbe"},"nullable":true,"metadata":{"description":"Optional. List of probes for the container."}},"resources":{"type":"object","metadata":{"description":"Required. Container resource requirements."}},"volumeMounts":{"type":"array","items":{"$ref":"#/definitions/volumeMount"},"nullable":true,"metadata":{"description":"Optional. Container volume mounts."}}}},"environmentVar":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Environment variable name."}},"secretRef":{"type":"string","nullable":true,"metadata":{"description":"Optional. Name of the Container App secret from which to pull the environment variable value."}},"value":{"type":"string","nullable":true,"metadata":{"description":"Optional. Non-secret environment variable value."}}}},"containerAppProbe":{"type":"object","properties":{"failureThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3."}},"httpGet":{"$ref":"#/definitions/containerAppProbeHttpGet","nullable":true,"metadata":{"description":"Optional. HTTPGet specifies the http request to perform."}},"initialDelaySeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":60,"metadata":{"description":"Optional. Number of seconds after the container has started before liveness probes are initiated."}},"periodSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. How often (in seconds) to perform the probe. Default to 10 seconds."}},"successThreshold":{"type":"int","nullable":true,"minValue":1,"maxValue":10,"metadata":{"description":"Optional. Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup."}},"tcpSocket":{"$ref":"#/definitions/containerAppProbeTcpSocket","nullable":true,"metadata":{"description":"Optional. TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported."}},"terminationGracePeriodSeconds":{"type":"int","nullable":true,"metadata":{"description":"Optional. Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod''s terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)."}},"timeoutSeconds":{"type":"int","nullable":true,"minValue":1,"maxValue":240,"metadata":{"description":"Optional. Number of seconds after which the probe times out. Defaults to 1 second."}},"type":{"type":"string","allowedValues":["Liveness","Readiness","Startup"],"nullable":true,"metadata":{"description":"Optional. The type of probe."}}}},"corsPolicyType":{"type":"object","properties":{"allowCredentials":{"type":"bool","nullable":true,"metadata":{"description":"Optional. Switch to determine whether the resource allows credentials."}},"allowedHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-headers header."}},"allowedMethods":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-methods header."}},"allowedOrigins":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-allow-origins header."}},"exposeHeaders":{"type":"array","items":{"type":"string"},"nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-expose-headers header."}},"maxAge":{"type":"int","nullable":true,"metadata":{"description":"Optional. Specifies the content for the access-control-max-age header."}}},"nullable":true},"containerAppProbeHttpGet":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to. Defaults to the pod IP."}},"httpHeaders":{"type":"array","items":{"$ref":"#/definitions/containerAppProbeHttpGetHeadersItem"},"nullable":true,"metadata":{"description":"Optional. HTTP headers to set in the request."}},"path":{"type":"string","metadata":{"description":"Required. Path to access on the HTTP server."}},"port":{"type":"int","metadata":{"description":"Required. Name or number of the port to access on the container."}},"scheme":{"type":"string","allowedValues":["HTTP","HTTPS"],"nullable":true,"metadata":{"description":"Optional. Scheme to use for connecting to the host. Defaults to HTTP."}}}},"containerAppProbeHttpGetHeadersItem":{"type":"object","properties":{"name":{"type":"string","metadata":{"description":"Required. Name of the header."}},"value":{"type":"string","metadata":{"description":"Required. Value of the header."}}}},"containerAppProbeTcpSocket":{"type":"object","properties":{"host":{"type":"string","nullable":true,"metadata":{"description":"Optional. Host name to connect to, defaults to the pod IP."}},"port":{"type":"int","minValue":1,"maxValue":65535,"metadata":{"description":"Required. Number of the port to access on the container. Name must be an IANA_SVC_NAME."}}}},"volumeMount":{"type":"object","properties":{"mountPath":{"type":"string","metadata":{"description":"Required. Path within the container at which the volume should be mounted.Must not contain '':''."}},"subPath":{"type":"string","nullable":true,"metadata":{"description":"Optional. Path within the volume from which the container''s volume should be mounted. Defaults to \"\" (volume''s root)."}},"volumeName":{"type":"string","metadata":{"description":"Required. This must match the Name of a Volume."}}}}},"parameters":{"name":{"type":"string","metadata":{"description":"Required. Name of the Container App."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Optional. Location for all Resources."}},"disableIngress":{"type":"bool","defaultValue":false,"metadata":{"description":"Optional. Bool to disable all ingress traffic for the container app."}},"ingressExternal":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if the App exposes an external HTTP endpoint."}},"clientCertificateMode":{"type":"string","defaultValue":"ignore","allowedValues":["accept","ignore","require"],"metadata":{"description":"Optional. Client certificate mode for mTLS."}},"corsPolicy":{"$ref":"#/definitions/corsPolicyType","metadata":{"description":"Optional. Object userd to configure CORS policy."}},"stickySessionsAffinity":{"type":"string","defaultValue":"none","allowedValues":["none","sticky"],"metadata":{"description":"Optional. Bool indicating if the Container App should enable session affinity."}},"ingressTransport":{"type":"string","defaultValue":"auto","allowedValues":["auto","http","http2","tcp"],"metadata":{"description":"Optional. Ingress transport protocol."}},"ingressAllowInsecure":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections."}},"ingressTargetPort":{"type":"int","defaultValue":80,"metadata":{"description":"Optional. Target Port in containers for traffic from ingress."}},"scaleMaxReplicas":{"type":"int","defaultValue":10,"metadata":{"description":"Optional. Maximum number of container replicas. Defaults to 10 if not set."}},"scaleMinReplicas":{"type":"int","defaultValue":3,"metadata":{"description":"Optional. Minimum number of container replicas. Defaults to 3 if not set."}},"scaleRules":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Scaling rules."}},"activeRevisionsMode":{"type":"string","defaultValue":"Single","allowedValues":["Multiple","Single"],"metadata":{"description":"Optional. Controls how active revisions are handled for the Container app."}},"environmentResourceId":{"type":"string","metadata":{"description":"Required. Resource ID of environment."}},"lock":{"$ref":"#/definitions/lockType","metadata":{"description":"Optional. The lock settings of the service."}},"tags":{"type":"object","nullable":true,"metadata":{"description":"Optional. Tags of the resource."}},"registries":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Collection of private container registry credentials for containers used by the Container app."}},"managedIdentities":{"$ref":"#/definitions/managedIdentitiesType","metadata":{"description":"Optional. The managed identity definition for this resource."}},"roleAssignments":{"$ref":"#/definitions/roleAssignmentType","metadata":{"description":"Optional. Array of role assignments to create."}},"enableTelemetry":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Enable/Disable usage telemetry for module."}},"customDomains":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Custom domain bindings for Container App hostnames."}},"exposedPort":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Exposed Port in containers for TCP traffic from ingress."}},"ipSecurityRestrictions":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. Rules to restrict incoming IP address."}},"trafficLabel":{"type":"string","defaultValue":"label-1","metadata":{"description":"Optional. Associates a traffic label with a revision. Label name should be consist of lower case alphanumeric characters or dashes."}},"trafficLatestRevision":{"type":"bool","defaultValue":true,"metadata":{"description":"Optional. Indicates that the traffic weight belongs to a latest stable revision."}},"trafficRevisionName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Name of a revision."}},"trafficWeight":{"type":"int","defaultValue":100,"metadata":{"description":"Optional. Traffic weight assigned to a revision."}},"dapr":{"type":"object","defaultValue":{},"metadata":{"description":"Optional. Dapr configuration for the Container App."}},"maxInactiveRevisions":{"type":"int","defaultValue":0,"metadata":{"description":"Optional. Max inactive revisions a Container App can have."}},"containers":{"type":"array","items":{"$ref":"#/definitions/container"},"metadata":{"description":"Required. List of container definitions for the Container App."}},"initContainersTemplate":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of specialized containers that run before app containers."}},"secrets":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Optional. The secrets of the Container App."}},"revisionSuffix":{"type":"string","defaultValue":"","metadata":{"description":"Optional. User friendly suffix that is appended to the revision name."}},"volumes":{"type":"array","defaultValue":[],"metadata":{"description":"Optional. List of volume definitions for the Container App."}},"workloadProfileName":{"type":"string","defaultValue":"","metadata":{"description":"Optional. Workload profile name to pin for container app execution."}}},"variables":{"copy":[{"name":"formattedRoleAssignments","count":"[length(coalesce(parameters(''roleAssignments''), createArray()))]","input":"[union(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')], createObject(''roleDefinitionId'', coalesce(tryGet(variables(''builtInRoleNames''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName), if(contains(coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, ''/providers/Microsoft.Authorization/roleDefinitions/''), coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName, subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', coalesce(parameters(''roleAssignments''), createArray())[copyIndex(''formattedRoleAssignments'')].roleDefinitionIdOrName)))))]"}],"secretList":"[if(not(empty(parameters(''secrets''))), parameters(''secrets'').secureList, createArray())]","formattedUserAssignedIdentities":"[reduce(map(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createArray()), lambda(''id'', createObject(format(''{0}'', lambdaVariables(''id'')), createObject()))), createObject(), lambda(''cur'', ''next'', union(lambdaVariables(''cur''), lambdaVariables(''next''))))]","identity":"[if(not(empty(parameters(''managedIdentities''))), createObject(''type'', if(coalesce(tryGet(parameters(''managedIdentities''), ''systemAssigned''), false()), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''SystemAssigned,UserAssigned'', ''SystemAssigned''), if(not(empty(coalesce(tryGet(parameters(''managedIdentities''), ''userAssignedResourceIds''), createObject()))), ''UserAssigned'', ''None'')), ''userAssignedIdentities'', if(not(empty(variables(''formattedUserAssignedIdentities''))), variables(''formattedUserAssignedIdentities''), null())), null())]","builtInRoleNames":{"ContainerApp Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b'')]","Contributor":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]","Owner":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''8e3af657-a8ff-443c-a75c-2fe8c4bcb635'')]","Reader":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''acdd72a7-3385-48ef-bd42-f606fba81ae7'')]","Role Based Access Control Administrator (Preview)":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''f58310d9-a9f6-439a-9e8d-f62e7b41a168'')]","User Access Administrator":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''18d7d88d-d35e-4fb5-a5c3-7773c20a72d9'')]"}},"resources":{"avmTelemetry":{"condition":"[parameters(''enableTelemetry'')]","type":"Microsoft.Resources/deployments","apiVersion":"2024-03-01","name":"[format(''46d3xbcp.res.app-containerapp.{0}.{1}'', replace(''0.8.0'', ''.'', ''-''), substring(uniqueString(deployment().name, parameters(''location'')), 0, 4))]","properties":{"mode":"Incremental","template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","resources":[],"outputs":{"telemetry":{"type":"String","value":"For more information, see https://aka.ms/avm/TelemetryInfo"}}}}},"containerApp":{"type":"Microsoft.App/containerApps","apiVersion":"2023-05-01","name":"[parameters(''name'')]","tags":"[parameters(''tags'')]","location":"[parameters(''location'')]","identity":"[variables(''identity'')]","properties":{"environmentId":"[parameters(''environmentResourceId'')]","configuration":{"activeRevisionsMode":"[parameters(''activeRevisionsMode'')]","dapr":"[if(not(empty(parameters(''dapr''))), parameters(''dapr''), null())]","ingress":"[if(parameters(''disableIngress''), null(), createObject(''allowInsecure'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''ingressAllowInsecure''), false()), ''customDomains'', if(not(empty(parameters(''customDomains''))), parameters(''customDomains''), null()), ''corsPolicy'', if(and(not(equals(parameters(''corsPolicy''), null())), not(equals(parameters(''ingressTransport''), ''tcp''))), createObject(''allowCredentials'', coalesce(tryGet(parameters(''corsPolicy''), ''allowCredentials''), false()), ''allowedHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedHeaders''), createArray()), ''allowedMethods'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedMethods''), createArray()), ''allowedOrigins'', coalesce(tryGet(parameters(''corsPolicy''), ''allowedOrigins''), createArray()), ''exposeHeaders'', coalesce(tryGet(parameters(''corsPolicy''), ''exposeHeaders''), createArray()), ''maxAge'', tryGet(parameters(''corsPolicy''), ''maxAge'')), null()), ''clientCertificateMode'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), parameters(''clientCertificateMode''), null()), ''exposedPort'', parameters(''exposedPort''), ''external'', parameters(''ingressExternal''), ''ipSecurityRestrictions'', if(not(empty(parameters(''ipSecurityRestrictions''))), parameters(''ipSecurityRestrictions''), null()), ''targetPort'', parameters(''ingressTargetPort''), ''stickySessions'', createObject(''affinity'', parameters(''stickySessionsAffinity'')), ''traffic'', if(not(equals(parameters(''ingressTransport''), ''tcp'')), createArray(createObject(''label'', parameters(''trafficLabel''), ''latestRevision'', parameters(''trafficLatestRevision''), ''revisionName'', parameters(''trafficRevisionName''), ''weight'', parameters(''trafficWeight''))), null()), ''transport'', parameters(''ingressTransport'')))]","maxInactiveRevisions":"[parameters(''maxInactiveRevisions'')]","registries":"[if(not(empty(parameters(''registries''))), parameters(''registries''), null())]","secrets":"[variables(''secretList'')]"},"template":{"containers":"[parameters(''containers'')]","initContainers":"[if(not(empty(parameters(''initContainersTemplate''))), parameters(''initContainersTemplate''), null())]","revisionSuffix":"[parameters(''revisionSuffix'')]","scale":{"maxReplicas":"[parameters(''scaleMaxReplicas'')]","minReplicas":"[parameters(''scaleMinReplicas'')]","rules":"[if(not(empty(parameters(''scaleRules''))), parameters(''scaleRules''), null())]"},"volumes":"[if(not(empty(parameters(''volumes''))), parameters(''volumes''), null())]"},"workloadProfileName":"[parameters(''workloadProfileName'')]"}},"containerApp_lock":{"condition":"[and(not(empty(coalesce(parameters(''lock''), createObject()))), not(equals(tryGet(parameters(''lock''), ''kind''), ''None'')))]","type":"Microsoft.Authorization/locks","apiVersion":"2020-05-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(parameters(''lock''), ''name''), format(''lock-{0}'', parameters(''name'')))]","properties":{"level":"[coalesce(tryGet(parameters(''lock''), ''kind''), '''')]","notes":"[if(equals(tryGet(parameters(''lock''), ''kind''), ''CanNotDelete''), ''Cannot delete resource or child resources.'', ''Cannot delete or modify the resource or child resources.'')]"},"dependsOn":["containerApp"]},"containerApp_roleAssignments":{"copy":{"name":"containerApp_roleAssignments","count":"[length(coalesce(variables(''formattedRoleAssignments''), createArray()))]"},"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/containerApps/{0}'', parameters(''name''))]","name":"[coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''name''), guid(resourceId(''Microsoft.App/containerApps'', parameters(''name'')), coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId, coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId))]","properties":{"roleDefinitionId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].roleDefinitionId]","principalId":"[coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()].principalId]","description":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''description'')]","principalType":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''principalType'')]","condition":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition'')]","conditionVersion":"[if(not(empty(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''condition''))), coalesce(tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''conditionVersion''), ''2.0''), null())]","delegatedManagedIdentityResourceId":"[tryGet(coalesce(variables(''formattedRoleAssignments''), createArray())[copyIndex()], ''delegatedManagedIdentityResourceId'')]"},"dependsOn":["containerApp"]}},"outputs":{"resourceId":{"type":"string","metadata":{"description":"The resource ID of the Container App."},"value":"[resourceId(''Microsoft.App/containerApps'', parameters(''name''))]"},"fqdn":{"type":"string","metadata":{"description":"The configuration of ingress fqdn."},"value":"[if(parameters(''disableIngress''), ''IngressDisabled'', reference(''containerApp'').configuration.ingress.fqdn)]"},"resourceGroupName":{"type":"string","metadata":{"description":"The name of the resource group the Container App was deployed into."},"value":"[resourceGroup().name]"},"name":{"type":"string","metadata":{"description":"The name of the Container App."},"value":"[parameters(''name'')]"},"systemAssignedMIPrincipalId":{"type":"string","metadata":{"description":"The principal ID of the system assigned identity."},"value":"[coalesce(tryGet(tryGet(reference(''containerApp'', ''2023-05-01'', ''full''), ''identity''), ''principalId''), '''')]"},"location":{"type":"string","metadata":{"description":"The location the resource was deployed into."},"value":"[reference(''containerApp'', ''2023-05-01'', ''full'').location]"}}}}}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Resources/deployments'', ''web''), ''2025-04-01'').outputs.fqdn.value)]"}}}}}' form: {} headers: Accept: @@ -1858,30 +10757,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "27575" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940?api-version=2021-04-01 - method: GET + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web-1775765041?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2906 + content_length: 1677 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:47Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:15:24.1230821Z","duration":"PT5M36.9797775S","correlationId":"7e589978ac0a1cb83effeb8c88391dd0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w39e10d"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cre2rj2pxpf4tdc"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-e2rj2pxpf4tdc"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cre2rj2pxpf4tdc.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc/providers/Microsoft.Authorization/roleAssignments/6ba2f458-f81e-5c30-bcaf-07bdbe1b51cd"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web-1775765041","name":"web-1775765041","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12728900275957388763","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"crau3ymjg7jhwlm"},"containerAppsEnvironmentName":{"type":"String","value":"cae-au3ymjg7jhwlm"},"imageName":{"type":"String","value":"crau3ymjg7jhwlm.azurecr.io/containerapp/web-azdtest-d995307:azd-deploy-1775765041"},"identityId":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T20:06:18.9801785Z","duration":"PT0.000069S","correlationId":"50f9e0feaf23b730184b19c457b819ec","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"crau3ymjg7jhwlm","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web-1775765041/operationStatuses/08584258417064884647?api-version=2021-04-01&t=639113619793083044&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=0VBmED7Z64DQXFx759zxtq_ATuBhRQEEKuoiTSSLgl_Tl3DF6AGKt11QwHSqFLUzdMz6GJXvYs3QnUCRVWkTluvUrCw7mYPFFcwNhAK9ntWLavrxiSCqGlz8ZrZ6oWrFnpl2A6DCFzE6i_XsTYKMKALFhkAX_NCe42lZH-_Bo3tv26dXrt18A123NsM78ykbMpA4McMs-4pdjZgOq-UkczZne351XFsm7piPEg56LSKTnor84YMC4o6g-spkGGrLsFaepWIBcj85YiUVOJKOe56mXNy53WZOOxK6gmKyB_IngajZr8GTcS0k1nxPx1WtD_nAby-Ek2vOwd7n4cqVqw&h=4YpOzdYysFhLPdDagXk6oLybMYsKXTfQ5lTSxdp4xXo Cache-Control: - no-cache Content-Length: - - "2906" + - "1677" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:45 GMT + - Thu, 09 Apr 2026 20:06:19 GMT Expires: - "-1" Pragma: @@ -1893,21 +10798,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 50f9e0feaf23b730184b19c457b819ec + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - cc34d3e1-b766-4562-b5c3-b5a39282da90 + - eb4cfa33-4d11-4c63-91ad-c44749f919b7 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T001645Z:cc34d3e1-b766-4562-b5c3-b5a39282da90 + - EASTUS2:20260409T200619Z:eb4cfa33-4d11-4c63-91ad-c44749f919b7 X-Msedge-Ref: - - 'Ref A: CF142C634FF2495D983EB91C5525A910 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:45Z' - status: 200 OK - code: 200 - duration: 235.043ms - - id: 28 + - 'Ref A: 09F61D531BC14E5892A52C72740E0B2D Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:18Z' + status: 201 Created + code: 201 + duration: 797.210583ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1921,17 +10828,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/resources?api-version=2021-04-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web-1775765041/operationStatuses/08584258417064884647?api-version=2021-04-01&t=639113619793083044&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=0VBmED7Z64DQXFx759zxtq_ATuBhRQEEKuoiTSSLgl_Tl3DF6AGKt11QwHSqFLUzdMz6GJXvYs3QnUCRVWkTluvUrCw7mYPFFcwNhAK9ntWLavrxiSCqGlz8ZrZ6oWrFnpl2A6DCFzE6i_XsTYKMKALFhkAX_NCe42lZH-_Bo3tv26dXrt18A123NsM78ykbMpA4McMs-4pdjZgOq-UkczZne351XFsm7piPEg56LSKTnor84YMC4o6g-spkGGrLsFaepWIBcj85YiUVOJKOe56mXNy53WZOOxK6gmKyB_IngajZr8GTcS0k1nxPx1WtD_nAby-Ek2vOwd7n4cqVqw&h=4YpOzdYysFhLPdDagXk6oLybMYsKXTfQ5lTSxdp4xXo method: GET response: proto: HTTP/2.0 @@ -1939,18 +10844,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2571 + content_length: 22 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc","name":"mi-e2rj2pxpf4tdc","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc","name":"log-e2rj2pxpf4tdc","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc","name":"cre2rj2pxpf4tdc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:09:57.7624624Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:09:57.7624624Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc","name":"cae-e2rj2pxpf4tdc","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:10:19.8003458Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:10:19.8003458Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc":{"principalId":"fb1aef14-0c43-4a29-8558-b4f9db4ca5d4","clientId":"cb1f50f0-80a9-4a00-9e60-2e934531b568"}}},"tags":{"azd-env-name":"azdtest-w39e10d","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:15:54.5735763Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:15:54.5735763Z"}}]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "2571" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:45 GMT + - Thu, 09 Apr 2026 20:06:49 GMT Expires: - "-1" Pragma: @@ -1962,21 +10867,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - aaf02eda-a27f-45be-b2ef-65aba956bacf + - 61f22667-1b11-4055-93a6-08faa922e15c X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001645Z:aaf02eda-a27f-45be-b2ef-65aba956bacf + - EASTUS2:20260409T200649Z:61f22667-1b11-4055-93a6-08faa922e15c X-Msedge-Ref: - - 'Ref A: AD9F434093CE4BA19E4C95F76D95F96C Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:45Z' + - 'Ref A: 44AE2A0C9F7F49F690AA734EA9C0FFB0 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:49Z' status: 200 OK code: 200 - duration: 107.8863ms - - id: 29 + duration: 77.084709ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1990,17 +10895,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armoperationalinsights/v2.0.2 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc?api-version=2025-07-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web-1775765041?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2008,28 +10911,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 937 + content_length: 1958 uncompressed: false - body: '{"properties":{"customerId":"3bb842b0-3e73-41b2-8e0a-421d5dd51e87","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-01-23T00:09:57.9368264Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-01-24T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-01-23T00:09:57.9368264Z","modifiedDate":"2026-01-23T00:10:10.1781045Z"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc","name":"log-e2rj2pxpf4tdc","type":"Microsoft.OperationalInsights/workspaces","etag":"\"4001cd06-0000-0200-0000-6972bc620000\""}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web-1775765041","name":"web-1775765041","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12728900275957388763","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"containerRegistryName":{"type":"String","value":"crau3ymjg7jhwlm"},"containerAppsEnvironmentName":{"type":"String","value":"cae-au3ymjg7jhwlm"},"imageName":{"type":"String","value":"crau3ymjg7jhwlm.azurecr.io/containerapp/web-azdtest-d995307:azd-deploy-1775765041"},"identityId":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:06:42.7712107Z","duration":"PT23.7910322S","correlationId":"50f9e0feaf23b730184b19c457b819ec","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm","resourceType":"Microsoft.ContainerRegistry/registries","resourceName":"crau3ymjg7jhwlm","apiVersion":"2023-01-01-preview"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"websitE_URL":{"type":"String","value":"https://web.agreeableisland-2dcd5472.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/containerApps/web"}]}}' headers: - Access-Control-Allow-Origin: - - '*' - Api-Supported-Versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 Cache-Control: - no-cache Content-Length: - - "937" + - "1958" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:45 GMT + - Thu, 09 Apr 2026 20:06:49 GMT Expires: - "-1" Pragma: - no-cache - Request-Context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -2037,21 +10934,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e089557d-3125-4747-b8d0-bfc2c8a62b20 + - 6585b251-05fd-4a7f-95d5-46a63969cd5c X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001646Z:e089557d-3125-4747-b8d0-bfc2c8a62b20 + - EASTUS2:20260409T200649Z:6585b251-05fd-4a7f-95d5-46a63969cd5c X-Msedge-Ref: - - 'Ref A: D0E73943155B4E638930478B95ECD36A Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:45Z' + - 'Ref A: 0C5D6AC0AC544C289AD5C2CE0E69C759 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:49Z' status: 200 OK code: 200 - duration: 143.4801ms - - id: 30 + duration: 73.273292ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2072,61 +10969,61 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armoperationalinsights/v2.0.2 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armappcontainers/v3.1.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc?api-version=2025-07-01&force=true - method: DELETE + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/containerApps/web?api-version=2025-01-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 3023 uncompressed: false - body: "" + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/containerapps/web","name":"web","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-d995307","azd-service-name":"web"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T20:06:21.3958175","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T20:06:21.3958175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm","environmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm","workloadProfileName":null,"outboundIpAddresses":["4.153.183.157"],"latestRevisionName":"web--vcgndqf","latestReadyRevisionName":"web--vcgndqf","latestRevisionFqdn":"web--vcgndqf.agreeableisland-2dcd5472.eastus2.azurecontainerapps.io","customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"web.agreeableisland-2dcd5472.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true,"label":"label-1"}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":"Ignore","stickySessions":{"affinity":"none"},"additionalPortMappings":null},"registries":[{"server":"crau3ymjg7jhwlm.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}],"dapr":null,"runtime":null,"maxInactiveRevisions":0,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"crau3ymjg7jhwlm.azurecr.io/containerapp/web-azdtest-d995307:azd-deploy-1775765041","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/containerApps/web/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm":{"principalId":"0813ee96-8056-4e7c-84cd-6765a875ce1e","clientId":"6d3e48f2-ff67-4382-ab83-eaea052c59f6"}}}}' headers: - Access-Control-Allow-Origin: - - '*' Api-Supported-Versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview Cache-Control: - no-cache Content-Length: - - "0" - Date: - - Fri, 23 Jan 2026 00:16:46 GMT + - "3023" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:06:49 GMT Expires: - "-1" Pragma: - no-cache - Request-Context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/eastus2/1c2c4da2-84b8-4298-8d21-73f42ed41d0b - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "799" - X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "11999" + - 50f9e0feaf23b730184b19c457b819ec + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - e453d3f5-80d6-4981-bd20-f0443e6eb72e + - cd4880d4-d3b2-4684-aa13-b67a781e1405 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001646Z:e453d3f5-80d6-4981-bd20-f0443e6eb72e + - EASTUS2:20260409T200649Z:cd4880d4-d3b2-4684-aa13-b67a781e1405 X-Msedge-Ref: - - 'Ref A: B93323BBF5624324BE62D14A69E38DFC Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:46Z' + - 'Ref A: 15FE2F2F05CC47D4ABB47BCA56155336 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:49Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 672.5311ms - - id: 31 + duration: 125.617ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2147,10 +11044,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940?api-version=2021-04-01 + - 50f9e0feaf23b730184b19c457b819ec + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d995307%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2158,18 +11055,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2906 + content_length: 325 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:47Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:15:24.1230821Z","duration":"PT5M36.9797775S","correlationId":"7e589978ac0a1cb83effeb8c88391dd0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w39e10d"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cre2rj2pxpf4tdc"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-e2rj2pxpf4tdc"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cre2rj2pxpf4tdc.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc/providers/Microsoft.Authorization/roleAssignments/6ba2f458-f81e-5c30-bcaf-07bdbe1b51cd"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc"}]}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","name":"rg-azdtest-d995307","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","DeleteAfter":"2026-04-09T21:04:26Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2906" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:46 GMT + - Thu, 09 Apr 2026 20:06:49 GMT Expires: - "-1" Pragma: @@ -2181,21 +11078,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 50f9e0feaf23b730184b19c457b819ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 16f85d74-797b-4b02-84b8-6d0ac1446aae + - 3c30b0b1-6d23-49d7-b918-9a249d44e537 X-Ms-Routing-Request-Id: - - WESTUS:20260123T001647Z:16f85d74-797b-4b02-84b8-6d0ac1446aae + - EASTUS:20260409T200650Z:3c30b0b1-6d23-49d7-b918-9a249d44e537 X-Msedge-Ref: - - 'Ref A: E9787D48D0B44C8F964DDFE15DF2D2E3 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:46Z' + - 'Ref A: 8A905FF89F824334915B273FA7AAB8FF Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:06:49Z' status: 200 OK code: 200 - duration: 391.9216ms - - id: 32 + duration: 178.153334ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: web.agreeableisland-2dcd5472.eastus2.azurecontainerapps.io + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - Go-http-client/1.1 + url: https://web.agreeableisland-2dcd5472.eastus2.azurecontainerapps.io:443/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: Hello, `azd`. + headers: + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:06:57 GMT + Server: + - Kestrel + status: 200 OK + code: 200 + duration: 8.608066209s + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2216,10 +11154,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/resources?api-version=2021-04-01 + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2227,18 +11165,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2267 + content_length: 960410 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc","name":"mi-e2rj2pxpf4tdc","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc","name":"cre2rj2pxpf4tdc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:09:57.7624624Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:09:57.7624624Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc","name":"cae-e2rj2pxpf4tdc","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:10:19.8003458Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:10:19.8003458Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc":{"principalId":"fb1aef14-0c43-4a29-8558-b4f9db4ca5d4","clientId":"cb1f50f0-80a9-4a00-9e60-2e934531b568"}}},"tags":{"azd-env-name":"azdtest-w39e10d","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:15:54.5735763Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:15:54.5735763Z"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","location":"eastus2","name":"azdtest-d995307-1775765041","properties":{"correlationId":"beb986a9dc65dc58534a20f757c667d8","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","resourceName":"rg-azdtest-d995307","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT1M13.1651479S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm/providers/Microsoft.Authorization/roleAssignments/001878a2-b549-5096-958e-d89eda2e8f47"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm"}],"outputs":{"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-au3ymjg7jhwlm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crau3ymjg7jhwlm.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crau3ymjg7jhwlm"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-04-09T21:04:26Z"},"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"3439496075272322378","timestamp":"2026-04-09T20:05:39.3971824Z"},"tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2267" + - "960410" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:47 GMT + - Thu, 09 Apr 2026 20:07:02 GMT Expires: - "-1" Pragma: @@ -2250,21 +11188,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 82b96869f2f61b3ff8231ca147be72b1 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - aa89daba-66f2-4436-9331-ae3cffa31741 + - 1cd95024-4fc7-4aef-b95f-514150d4aad1 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001647Z:aa89daba-66f2-4436-9331-ae3cffa31741 + - EASTUS:20260409T200703Z:1cd95024-4fc7-4aef-b95f-514150d4aad1 X-Msedge-Ref: - - 'Ref A: 4B72C7D6002D4ADEB3C702E526396970 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:47Z' + - 'Ref A: 1696E065B881416CBD34B4FEA3D1CC2C Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:00Z' status: 200 OK code: 200 - duration: 252.5959ms - - id: 33 + duration: 2.786041458s + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2278,42 +11216,38 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w39e10d?api-version=2021-04-01 - method: DELETE + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 898963 uncompressed: false - body: "" + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "898963" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:16:47 GMT + - Thu, 09 Apr 2026 20:07:05 GMT Expires: - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMzlFMTBELUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639047245628437702&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=FE2y06ILVFn2mvWdIea3QAmhWdC2ZiJSUGF_IlM2TAlCgZSF5cIKcuTzU9zCp63iUluCg1-T-47oveE4OEGR_BaODA4D5UBhZKUHYbS4jSQ3ShwuqTT0U5u7Drq2gaz6XF-CaSWc4PWLezrUvuh6snubdMQ4AZNcM4tjseKPjkHNLKA2ejY3S3sn7r3S_M9X2DjfUiBdaH4GzZip7_lAk6LSbdZB5V181fkW0bvsrFgiS0iUja2wmTVjjZG7TvYkOyhbkS1G8-b_BLzrC0CDxQ_98XFGaK8-4XcrIlc8y-E8ZqNg0u2Tj5iyzQWT46Wa-Dm7pN9tRDF6bOy2cz439g&h=c9uy45pt9AJY8rQo6C7tU7Wz_NGyCuKceYilF3PlEEo Pragma: - no-cache - Retry-After: - - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -2321,21 +11255,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "799" - X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "11999" + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - b220990f-24d1-42aa-a2c8-e4e38a5f8d19 + - 51ea5d96-fabe-417a-8589-4691a64ef433 X-Ms-Routing-Request-Id: - - EASTUS2:20260123T001647Z:b220990f-24d1-42aa-a2c8-e4e38a5f8d19 + - EASTUS:20260409T200705Z:51ea5d96-fabe-417a-8589-4691a64ef433 X-Msedge-Ref: - - 'Ref A: 9B9A02CCD04543E2A7F029C5B3174B30 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:16:47Z' - status: 202 Accepted - code: 202 - duration: 265.3305ms - - id: 34 + - 'Ref A: 21557384A7B34BA985284C600FED1478 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:03Z' + status: 200 OK + code: 200 + duration: 2.492058958s + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2354,10 +11288,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMzlFMTBELUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639047245628437702&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=FE2y06ILVFn2mvWdIea3QAmhWdC2ZiJSUGF_IlM2TAlCgZSF5cIKcuTzU9zCp63iUluCg1-T-47oveE4OEGR_BaODA4D5UBhZKUHYbS4jSQ3ShwuqTT0U5u7Drq2gaz6XF-CaSWc4PWLezrUvuh6snubdMQ4AZNcM4tjseKPjkHNLKA2ejY3S3sn7r3S_M9X2DjfUiBdaH4GzZip7_lAk6LSbdZB5V181fkW0bvsrFgiS0iUja2wmTVjjZG7TvYkOyhbkS1G8-b_BLzrC0CDxQ_98XFGaK8-4XcrIlc8y-E8ZqNg0u2Tj5iyzQWT46Wa-Dm7pN9tRDF6bOy2cz439g&h=c9uy45pt9AJY8rQo6C7tU7Wz_NGyCuKceYilF3PlEEo + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2365,16 +11299,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 515084 uncompressed: false - body: "" + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "515084" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:22:57 GMT + - Thu, 09 Apr 2026 20:07:07 GMT Expires: - "-1" Pragma: @@ -2386,21 +11322,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 82b96869f2f61b3ff8231ca147be72b1 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - da502f2f-e908-421e-8d70-b538451d5484 + - df79ddf8-477d-443e-92c2-4a1be2a0a4aa X-Ms-Routing-Request-Id: - - WESTUS:20260123T002258Z:da502f2f-e908-421e-8d70-b538451d5484 + - EASTUS2:20260409T200707Z:df79ddf8-477d-443e-92c2-4a1be2a0a4aa X-Msedge-Ref: - - 'Ref A: 701722D629224DC398E7E051E63F2D41 Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:22:57Z' + - 'Ref A: AA69EAD91EA5407C9915D2D75F1C44E4 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:05Z' status: 200 OK code: 200 - duration: 430.398ms - - id: 35 + duration: 1.523394792s + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2414,17 +11350,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940?api-version=2021-04-01 + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2432,18 +11366,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2906 + content_length: 415580 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w39e10d","azd-layer-name":"","azd-provision-param-hash":"94d9cb65aafe6bc6f7239dd8670de746b684c8f2d09b275f0d18406edd3d991b"},"properties":{"templateHash":"17519074622280447864","parameters":{"environmentName":{"type":"String","value":"azdtest-w39e10d"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-23T01:09:47Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:15:24.1230821Z","duration":"PT5M36.9797775S","correlationId":"7e589978ac0a1cb83effeb8c88391dd0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w39e10d"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cre2rj2pxpf4tdc"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-e2rj2pxpf4tdc"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cre2rj2pxpf4tdc.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.App/managedEnvironments/cae-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ContainerRegistry/registries/cre2rj2pxpf4tdc/providers/Microsoft.Authorization/roleAssignments/6ba2f458-f81e-5c30-bcaf-07bdbe1b51cd"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-e2rj2pxpf4tdc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39e10d/providers/Microsoft.OperationalInsights/workspaces/log-e2rj2pxpf4tdc"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2906" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:22:58 GMT + - Thu, 09 Apr 2026 20:07:08 GMT Expires: - "-1" Pragma: @@ -2455,70 +11389,131 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 82b96869f2f61b3ff8231ca147be72b1 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c8c01ad9-99cd-4dc4-bfc6-6d66c0856258 + - 78048746-ae6f-4167-83c6-340a910b2399 X-Ms-Routing-Request-Id: - - WESTUS2:20260123T002258Z:c8c01ad9-99cd-4dc4-bfc6-6d66c0856258 + - EASTUS2:20260409T200708Z:78048746-ae6f-4167-83c6-340a910b2399 X-Msedge-Ref: - - 'Ref A: 7AD44A2F118F4DCB841D4B323D11D50E Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:22:58Z' + - 'Ref A: C581B72FEB1546F198E177F0500EBDE9 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:07Z' status: 200 OK code: 200 - duration: 638.8151ms - - id: 36 + duration: 981.575959ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 346 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w39e10d"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "346" + - "136970" Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:07:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 366a2450-671e-4282-950a-4ef621b6b636 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T200709Z:366a2450-671e-4282-950a-4ef621b6b636 + X-Msedge-Ref: + - 'Ref A: 2F7589396C7E477D9E4048620288AC3B Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:08Z' + status: 200 OK + code: 200 + duration: 777.476875ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940?api-version=2021-04-01 - method: PUT + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041?api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 2905 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w39e10d"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-23T00:22:59.7248934Z","duration":"PT0.0004951S","correlationId":"2b7ade522b67901a04f88a508a1cd7d6","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T21:04:26Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:05:39.3971824Z","duration":"PT1M13.1651479S","correlationId":"beb986a9dc65dc58534a20f757c667d8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d995307"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crau3ymjg7jhwlm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-au3ymjg7jhwlm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crau3ymjg7jhwlm.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm/providers/Microsoft.Authorization/roleAssignments/001878a2-b549-5096-958e-d89eda2e8f47"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm"}]}}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940/operationStatuses/08584324791057411434?api-version=2021-04-01&t=639047245824594327&c=MIIHhzCCBm-gAwIBAgITfAoFj3UnLFat7-UOvQAACgWPdTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMTE1MTEyNDI1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL7q0FwMI4pK9lgk52VrKK0P6Z6MwRyR6Mzfg0d4v1dzxqST3G7RQfjhQG39dCI9Mqy5lsmCerbLetSdc1VE4mJJyuNqCsLo7Xhf2CV7wmEO09A2_8WwFfyTUxp45W8rRYa1zwHHFrdcjFQv20LolrP8mRmDFdRa8ZJvyL4gJLvstuWI3gw_Ksl2SSN2tDRNIef_UKj04bXdF-fCZCGo0jqYSS8e8Clin1cQlNRt0aLeInNG7ppk7EM_Pcz26onkMivaBql7Rg6TNnDDvM524Q7850OSMTKXNbh58e4Za1OcyVOAPvhx0aaydGQ-xHBxmEfMl2syBwmvbnAj8Iswv-0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBRMuwNSmuAZx_T5anD1Wx0cvqIrxDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACjtkHb5TanqpNigb0DttCimJSPYHrIg6lNBvXVy8789Vr2cGfPAEFox1evwMNExZLtQKv9gy6rx6281gkNcJA4Yc7tUxdS9J_1U7ZtG_BNn-pNt72tBez50Amzrbtp1Gd0XnY4fKXBHw4qdG7ftmlNNWTqfRVgka_EorpmVFs6e_mnWuxb-rJSnUG9Y15iPF-uGetF94xhedcLLhvyzwqo-yGRcXwPG635JCUtNWOsst3HlkbhCissfyYSKr7xWsjcCOKI58wyoC4ydfgHzsq5sC2gZDxQ2m1jwYXr8fSCiJ_3YlUBM1bXeWrIQ5-qmYif4TRCrqdV-NTtmheaDL1M&s=GJ1IoRteVAML9Stgt-FtyTfjdz-v-HI_1H2n_iHVaBlOWPDS4GcVzdaFEyYiO82r9eDFmG1ugY1_1VPlWfEahXWbcAndIcn5pUL-Hw9DtqHsORF9lbPhSTTxrxfIB8t9E6fUMoyKY4Y4SsdYRK9n0asgszwfPUWfBqAkYdap17cgOaQ0QKvSIeFt7o3DbdEvAXBVaVQvh5eGA-mU-KlssHIcFzLrPkk5rS9Q2zfX0TW8EAn3yGs2HkNn5r097WtzdDX0yUNcqaWldUligWsmu80XPoZUHgfpkkxwAaJUFIXuQIYgbtVlgXBgOUiTg5gcj8ftSmbe_0AZfsYP1l7fDg&h=jVH_X1AfrrS2ukmvk4X69lL22UYQ5uz3EvfTWkNbeOQ Cache-Control: - no-cache Content-Length: - - "570" + - "2905" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:23:01 GMT + - Thu, 09 Apr 2026 20:07:09 GMT Expires: - "-1" Pragma: @@ -2530,23 +11525,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - X-Ms-Deployment-Engine-Version: - - 1.568.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 8d8eba28-4584-4c6f-ab95-36fa29cb062e + - 084211f5-94ec-4067-8293-849d6131d13a X-Ms-Routing-Request-Id: - - WESTUS:20260123T002302Z:8d8eba28-4584-4c6f-ab95-36fa29cb062e + - EASTUS2:20260409T200709Z:084211f5-94ec-4067-8293-849d6131d13a X-Msedge-Ref: - - 'Ref A: 63C3012F28CB463BBA526DF86F731BBF Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:22:58Z' + - 'Ref A: 771EEE4EF6764132964AD2EDF3119AF0 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:09Z' status: 200 OK code: 200 - duration: 3.5386805s - - id: 37 + duration: 73.938167ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2560,15 +11553,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940/operationStatuses/08584324791057411434?api-version=2021-04-01&t=639047245824594327&c=MIIHhzCCBm-gAwIBAgITfAoFj3UnLFat7-UOvQAACgWPdTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMTE1MTEyNDI1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL7q0FwMI4pK9lgk52VrKK0P6Z6MwRyR6Mzfg0d4v1dzxqST3G7RQfjhQG39dCI9Mqy5lsmCerbLetSdc1VE4mJJyuNqCsLo7Xhf2CV7wmEO09A2_8WwFfyTUxp45W8rRYa1zwHHFrdcjFQv20LolrP8mRmDFdRa8ZJvyL4gJLvstuWI3gw_Ksl2SSN2tDRNIef_UKj04bXdF-fCZCGo0jqYSS8e8Clin1cQlNRt0aLeInNG7ppk7EM_Pcz26onkMivaBql7Rg6TNnDDvM524Q7850OSMTKXNbh58e4Za1OcyVOAPvhx0aaydGQ-xHBxmEfMl2syBwmvbnAj8Iswv-0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBRMuwNSmuAZx_T5anD1Wx0cvqIrxDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACjtkHb5TanqpNigb0DttCimJSPYHrIg6lNBvXVy8789Vr2cGfPAEFox1evwMNExZLtQKv9gy6rx6281gkNcJA4Yc7tUxdS9J_1U7ZtG_BNn-pNt72tBez50Amzrbtp1Gd0XnY4fKXBHw4qdG7ftmlNNWTqfRVgka_EorpmVFs6e_mnWuxb-rJSnUG9Y15iPF-uGetF94xhedcLLhvyzwqo-yGRcXwPG635JCUtNWOsst3HlkbhCissfyYSKr7xWsjcCOKI58wyoC4ydfgHzsq5sC2gZDxQ2m1jwYXr8fSCiJ_3YlUBM1bXeWrIQ5-qmYif4TRCrqdV-NTtmheaDL1M&s=GJ1IoRteVAML9Stgt-FtyTfjdz-v-HI_1H2n_iHVaBlOWPDS4GcVzdaFEyYiO82r9eDFmG1ugY1_1VPlWfEahXWbcAndIcn5pUL-Hw9DtqHsORF9lbPhSTTxrxfIB8t9E6fUMoyKY4Y4SsdYRK9n0asgszwfPUWfBqAkYdap17cgOaQ0QKvSIeFt7o3DbdEvAXBVaVQvh5eGA-mU-KlssHIcFzLrPkk5rS9Q2zfX0TW8EAn3yGs2HkNn5r097WtzdDX0yUNcqaWldUligWsmu80XPoZUHgfpkkxwAaJUFIXuQIYgbtVlgXBgOUiTg5gcj8ftSmbe_0AZfsYP1l7fDg&h=jVH_X1AfrrS2ukmvk4X69lL22UYQ5uz3EvfTWkNbeOQ + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2576,18 +11571,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 2565 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm","name":"log-au3ymjg7jhwlm","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm","name":"mi-au3ymjg7jhwlm","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm","name":"crau3ymjg7jhwlm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T20:04:34.2453722Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T20:04:34.2453722Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm","name":"cae-au3ymjg7jhwlm","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T20:04:58.7583942Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T20:04:58.7583942Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm":{"principalId":"0813ee96-8056-4e7c-84cd-6765a875ce1e","clientId":"6d3e48f2-ff67-4382-ab83-eaea052c59f6"}}},"tags":{"azd-env-name":"azdtest-d995307","azd-service-name":"web"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T20:06:21.3958175Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T20:06:21.3958175Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "2565" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:23:02 GMT + - Thu, 09 Apr 2026 20:07:09 GMT Expires: - "-1" Pragma: @@ -2599,21 +11594,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 82b96869f2f61b3ff8231ca147be72b1 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0d1e52d4-5d97-4428-a6bd-c7f1c2589cce + - 0be92c91-fc27-480b-a036-231989b1c9bf X-Ms-Routing-Request-Id: - - WESTUS2:20260123T002302Z:0d1e52d4-5d97-4428-a6bd-c7f1c2589cce + - EASTUS2:20260409T200709Z:0be92c91-fc27-480b-a036-231989b1c9bf X-Msedge-Ref: - - 'Ref A: 69798D5CA635439E824D3998C277968E Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:23:02Z' + - 'Ref A: C01EA5A597D54D8183D71BAE3E247496 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:09Z' status: 200 OK code: 200 - duration: 394.549ms - - id: 38 + duration: 100.251708ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2627,15 +11622,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940?api-version=2021-04-01 + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm?api-version=2025-07-01 method: GET response: proto: HTTP/2.0 @@ -2643,22 +11640,28 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 937 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w39e10d-1769126940","name":"azdtest-w39e10d-1769126940","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w39e10d"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-23T00:23:02.6431914Z","duration":"PT2.918298S","correlationId":"2b7ade522b67901a04f88a508a1cd7d6","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"properties":{"customerId":"66098d26-8384-4e37-894a-da0d24d88bf1","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-04-09T20:04:34.2630612Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-04-10T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-04-09T20:04:34.2630612Z","modifiedDate":"2026-04-09T20:04:46.3677165Z"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm","name":"log-au3ymjg7jhwlm","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0d027627-0000-0200-0000-69d8065e0000\""}' headers: + Access-Control-Allow-Origin: + - '*' + Api-Supported-Versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 Cache-Control: - no-cache Content-Length: - - "604" + - "937" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Jan 2026 00:23:02 GMT + - Thu, 09 Apr 2026 20:07:09 GMT Expires: - "-1" Pragma: - no-cache + Request-Context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -2666,21 +11669,9951 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2b7ade522b67901a04f88a508a1cd7d6 + - 82b96869f2f61b3ff8231ca147be72b1 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5e27482e-4933-45e8-920d-bc5da35b7f32 + - 45a1d868-bfc0-4f21-8020-5726bfa8f7f2 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260123T002303Z:5e27482e-4933-45e8-920d-bc5da35b7f32 + - EASTUS2:20260409T200709Z:45a1d868-bfc0-4f21-8020-5726bfa8f7f2 X-Msedge-Ref: - - 'Ref A: 4A6FA305AEB948F2ACE30A2CE3C1072E Ref B: CO6AA3150217025 Ref C: 2026-01-23T00:23:02Z' + - 'Ref A: 91AABEB1986E4E6487AE687F881B9A89 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:09Z' + status: 200 OK + code: 200 + duration: 76.20075ms + - id: 42 + 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-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm?api-version=2025-07-01&force=true + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Access-Control-Allow-Origin: + - '*' + Api-Supported-Versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/3c74563f-7caf-4e2d-a550-68d31c6a4c7a?api-version=2015-11-01-preview&t=639113620297687752&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=hj_qFz01KtLmcx_0MzHmDXgg_b0NUoqZqtKK0H_bveaqnqsIPFKVLCwKXnGK5HlgRgwukDEd9TqISE9-a9I2ypz2RKhX2tlZEPMUON2chsY6pzbBsTGF6LWc7XYyPtYAqth7V6O2Mlj6bQzeiiD_iIUZ4QIyOqMtJ0JFLGv0x_DSEAGx3G3--a9tQd_i5mK86ZtWCfKW4bhq0a_368Q2MTieTL_y_Ldke9dAa5fa3dx5yixBPAnabijupiGWhdOyiytGwN00r3xqHjh5h0WcyxtCjL2ijhXTBLWRpXG_gQcFjsYELdtKwO7DqabyCJ_XIQqlKi_GfvTsXSs260jFHg&h=ISggCsuaHETMDAHgtHFjl9c6LwMHJBeAZ-LzoEXlZC4 + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 20:07:09 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm/operationresults/3c74563f-7caf-4e2d-a550-68d31c6a4c7a?api-version=2025-07-01&t=639113620297687752&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=zwwwx-6mvOTqqL_UzgYG9wdHwwnqFlT_m9HYzU5oadp5GQazAsFmJ0nyXuIsw1xN1EdDsi39u_v60vLhb7-dchOtFshuPg23ycjRumHQajGAVBhJk_Cjl1Xf3A2CUT5lrbBTXndIDZP9qK51cUOj1-QO3k_gwDBeKnpDCxYsGz5eGa6daJr3hwUaftf9XQyKcREPbBMTSoA8f8y9eQ6hsAl7vpZZ5LGdtTkV3faCeh1IYo6MzuVRmHoOr16VF2lhNUyySlW3_0nlAqxkwHy_v0GwwHICwNPr1NJKGWbAaH8dB4Zi3QfmdPxZLC2s0bjziycy0xkjJtdF89zTP813Jg&h=OaLt7F4L3Bge6mbyPBWOKvjmU1k7LZNpnwMAj0Nn9IE + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/9f15df3a-ed5d-48f6-9e00-fa7ed3a03148 + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - 7f0c679f-2135-4150-a451-b9ade2012c3a + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T200709Z:7f0c679f-2135-4150-a451-b9ade2012c3a + X-Msedge-Ref: + - 'Ref A: 3F30D3FB78B14E4F89DD8CEF2ED12F31 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:09Z' + status: 202 Accepted + code: 202 + duration: 234.210125ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/3c74563f-7caf-4e2d-a550-68d31c6a4c7a?api-version=2015-11-01-preview&t=639113620297687752&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=hj_qFz01KtLmcx_0MzHmDXgg_b0NUoqZqtKK0H_bveaqnqsIPFKVLCwKXnGK5HlgRgwukDEd9TqISE9-a9I2ypz2RKhX2tlZEPMUON2chsY6pzbBsTGF6LWc7XYyPtYAqth7V6O2Mlj6bQzeiiD_iIUZ4QIyOqMtJ0JFLGv0x_DSEAGx3G3--a9tQd_i5mK86ZtWCfKW4bhq0a_368Q2MTieTL_y_Ldke9dAa5fa3dx5yixBPAnabijupiGWhdOyiytGwN00r3xqHjh5h0WcyxtCjL2ijhXTBLWRpXG_gQcFjsYELdtKwO7DqabyCJ_XIQqlKi_GfvTsXSs260jFHg&h=ISggCsuaHETMDAHgtHFjl9c6LwMHJBeAZ-LzoEXlZC4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 340 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/3c74563f-7caf-4e2d-a550-68d31c6a4c7a","name":"3c74563f-7caf-4e2d-a550-68d31c6a4c7a","status":"Succeeded","startTime":"2026-04-09T20:07:09.7192648Z","endTime":"2026-04-09T20:07:15.6506468Z","properties":{}}' + headers: + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - no-cache + Content-Length: + - "340" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:07:29 GMT + Expires: + - "-1" + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/4c183d3a-8bea-47af-ada2-d12038e596ef + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a92dfa31-5297-4ae9-b383-1a4278c6ccd1 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T200729Z:a92dfa31-5297-4ae9-b383-1a4278c6ccd1 + X-Msedge-Ref: + - 'Ref A: FB11B816736442CE83166CEFDD96C580 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:29Z' + status: 200 OK + code: 200 + duration: 156.383583ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2905 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T21:04:26Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:05:39.3971824Z","duration":"PT1M13.1651479S","correlationId":"beb986a9dc65dc58534a20f757c667d8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d995307"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crau3ymjg7jhwlm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-au3ymjg7jhwlm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crau3ymjg7jhwlm.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm/providers/Microsoft.Authorization/roleAssignments/001878a2-b549-5096-958e-d89eda2e8f47"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2905" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:07:29 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 5054131e-883a-49b9-8ff5-77674b050995 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T200730Z:5054131e-883a-49b9-8ff5-77674b050995 + X-Msedge-Ref: + - 'Ref A: 9D894FB507D2424FAE153ED9CD24315B Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:30Z' + status: 200 OK + code: 200 + duration: 265.016958ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2261 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm","name":"mi-au3ymjg7jhwlm","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm","name":"crau3ymjg7jhwlm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T20:04:34.2453722Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T20:04:34.2453722Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm","name":"cae-au3ymjg7jhwlm","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T20:04:58.7583942Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T20:04:58.7583942Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/containerApps/web","name":"web","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm":{"principalId":"0813ee96-8056-4e7c-84cd-6765a875ce1e","clientId":"6d3e48f2-ff67-4382-ab83-eaea052c59f6"}}},"tags":{"azd-env-name":"azdtest-d995307","azd-service-name":"web"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T20:06:21.3958175Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T20:06:21.3958175Z"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2261" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:07:30 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7b91df43-7431-41c6-9a26-d3f4113e2058 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T200730Z:7b91df43-7431-41c6-9a26-d3f4113e2058 + X-Msedge-Ref: + - 'Ref A: 12B8568E6D044A57827AD8BCD07266C5 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:30Z' + status: 200 OK + code: 200 + duration: 142.602833ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d995307?api-version=2021-04-01 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 20:07:30 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREOTk1MzA3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113625812823030&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=wLGAxorIFdPKirbJqtHr540_smWmtxn0PnlzyL0eIZUyj6CEZSh6yXHMZTNpacvK8YHFunXeaMG-B7RHopGjLmegruHWDT6nZNxcsG1ah4YYbnETHGLvONFhnraF_S9jW_4un0dP9XOp44GaFQWq0dfnN2nZ4u1G8R_DfMgg76-Pn3qNRKPgwzi1lvJNhSLpC6xdnXvym-7dsbuVEDvB8tggTkzmVH2-mdVMlfpijM4JD6sBz7J6-ei0jIm_kwjhNS2zXfZa155ERAriOJwsmM4MA6f2DYpX_V2qM6OakentylbR0KefJ8ix1dI8UzF-LTTQU3xOa_h0wt7UKLm8jQ&h=qHSqGKdobjxpUUmNulN4deaFny6U6UEfmBnRmnDT0mM + Pragma: + - no-cache + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - 505860c9-e5f3-4373-a4e7-e65381fb505f + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T200730Z:505860c9-e5f3-4373-a4e7-e65381fb505f + X-Msedge-Ref: + - 'Ref A: A4D71CC764F84111B2506D3FE8F45215 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:07:30Z' + status: 202 Accepted + code: 202 + duration: 226.029916ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREOTk1MzA3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113625812823030&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=wLGAxorIFdPKirbJqtHr540_smWmtxn0PnlzyL0eIZUyj6CEZSh6yXHMZTNpacvK8YHFunXeaMG-B7RHopGjLmegruHWDT6nZNxcsG1ah4YYbnETHGLvONFhnraF_S9jW_4un0dP9XOp44GaFQWq0dfnN2nZ4u1G8R_DfMgg76-Pn3qNRKPgwzi1lvJNhSLpC6xdnXvym-7dsbuVEDvB8tggTkzmVH2-mdVMlfpijM4JD6sBz7J6-ei0jIm_kwjhNS2zXfZa155ERAriOJwsmM4MA6f2DYpX_V2qM6OakentylbR0KefJ8ix1dI8UzF-LTTQU3xOa_h0wt7UKLm8jQ&h=qHSqGKdobjxpUUmNulN4deaFny6U6UEfmBnRmnDT0mM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 20:16:35 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - e6efc64b-5604-4d95-857f-bdbcae2cf477 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T201636Z:e6efc64b-5604-4d95-857f-bdbcae2cf477 + X-Msedge-Ref: + - 'Ref A: D784C1DDA95D41568BCC5C13FD993BE0 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:16:36Z' + status: 200 OK + code: 200 + duration: 73.255084ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2905 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d995307","azd-layer-name":"","azd-provision-param-hash":"8ef1a58b0dfb20bd6a974a7ad44dc8efbe4905c677e81f92d25d789171ed753d"},"properties":{"templateHash":"3439496075272322378","parameters":{"environmentName":{"type":"String","value":"azdtest-d995307"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T21:04:26Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:05:39.3971824Z","duration":"PT1M13.1651479S","correlationId":"beb986a9dc65dc58534a20f757c667d8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d995307"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crau3ymjg7jhwlm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-au3ymjg7jhwlm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crau3ymjg7jhwlm.azurecr.io"},"servicE_WEB_IDENTITY_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.App/managedEnvironments/cae-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ContainerRegistry/registries/crau3ymjg7jhwlm/providers/Microsoft.Authorization/roleAssignments/001878a2-b549-5096-958e-d89eda2e8f47"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-au3ymjg7jhwlm"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d995307/providers/Microsoft.OperationalInsights/workspaces/log-au3ymjg7jhwlm"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2905" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:16:35 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 9f1fcf35-e144-4e2a-a6b3-0b1e17ae3c08 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T201636Z:9f1fcf35-e144-4e2a-a6b3-0b1e17ae3c08 + X-Msedge-Ref: + - 'Ref A: 587B02188482457F915A4A22DC8DB315 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:16:36Z' + status: 200 OK + code: 200 + duration: 182.172833ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 346 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d995307"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "346" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 570 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d995307"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T20:16:36.8761253Z","duration":"PT0.0000751S","correlationId":"82b96869f2f61b3ff8231ca147be72b1","providers":[],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041/operationStatuses/08584258410885944353?api-version=2021-04-01&t=639113625973761259&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Wz5JWdtWXzPSV5RZwcw4joPmy_YwxlYf6_zCDWYac93bswzU8VN8mYx5wAapaXSH2PkpFaNY2A-dBxea4nos9E7JuEd-RNaZ-06sMq3GEMyBzrcIVaKikvrgJ4yqwpi0hz-EFX4mQHqUeJ7xCkb_kdguWCoef4-nhBZbWoayxX_R1tOBifbtJtF9RUe_XjmzYuFcfNhkaNqIww7bod2ZE7W562MGI3xw_T4v2Cv8F1tKZB6YgAGGrHva55UMXNqfn-RTfE_FDDwKYfuZ819r70nFFcB8K9gDZ6yii-hSNudY7pIAD4XcIGxsrRIKZMHvxp7XczChJXyvtg8sjbKxRw&h=aK99r8b_0KPvWDfjMVSdityPqQDYPHX2pi_e4xv9dDo + Cache-Control: + - no-cache + Content-Length: + - "570" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:16:36 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 16f052f7-78b1-40a9-af4c-c292d45e6d69 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T201637Z:16f052f7-78b1-40a9-af4c-c292d45e6d69 + X-Msedge-Ref: + - 'Ref A: EDB7E082497F4488882B2816AFC32F8D Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:16:36Z' + status: 200 OK + code: 200 + duration: 793.500959ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041/operationStatuses/08584258410885944353?api-version=2021-04-01&t=639113625973761259&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Wz5JWdtWXzPSV5RZwcw4joPmy_YwxlYf6_zCDWYac93bswzU8VN8mYx5wAapaXSH2PkpFaNY2A-dBxea4nos9E7JuEd-RNaZ-06sMq3GEMyBzrcIVaKikvrgJ4yqwpi0hz-EFX4mQHqUeJ7xCkb_kdguWCoef4-nhBZbWoayxX_R1tOBifbtJtF9RUe_XjmzYuFcfNhkaNqIww7bod2ZE7W562MGI3xw_T4v2Cv8F1tKZB6YgAGGrHva55UMXNqfn-RTfE_FDDwKYfuZ819r70nFFcB8K9gDZ6yii-hSNudY7pIAD4XcIGxsrRIKZMHvxp7XczChJXyvtg8sjbKxRw&h=aK99r8b_0KPvWDfjMVSdityPqQDYPHX2pi_e4xv9dDo + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:17:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - fec75ddc-5e34-45b1-9172-ccc42c4ca869 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T201707Z:fec75ddc-5e34-45b1-9172-ccc42c4ca869 + X-Msedge-Ref: + - 'Ref A: 1973C804F1244F26A472D4D395FF14A0 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:17:07Z' + status: 200 OK + code: 200 + duration: 174.267792ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 605 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d995307-1775765041","name":"azdtest-d995307-1775765041","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d995307"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:16:37.7034747Z","duration":"PT0.8273494S","correlationId":"82b96869f2f61b3ff8231ca147be72b1","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "605" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:17:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 82b96869f2f61b3ff8231ca147be72b1 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3b67b628-aeda-4f58-9776-f02833566e01 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T201707Z:3b67b628-aeda-4f58-9776-f02833566e01 + X-Msedge-Ref: + - 'Ref A: AD6F134AB7FF4048AB69615AD6414242 Ref B: BN1AA2051015039 Ref C: 2026-04-09T20:17:07Z' + status: 200 OK + code: 200 + duration: 103.305583ms + - id: 52 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 20:17:08 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 20:22:08 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 5398e4ea7bda93a593540cf7c7745f7a2f24b086 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775765828.228281,VS0,VE54 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 144.161708ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 20:17:08 GMT + Expires: + - Thu, 09 Apr 2026 20:17:08 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: 298.337125ms + - id: 54 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 20:17:08 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 20:22:08 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - e241d6c215e83ed2ab202156a33e0d79935419b0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775765829.622689,VS0,VE31 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 58.23075ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 20:17:08 GMT + Expires: + - Thu, 09 Apr 2026 20:17:08 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 154.458083ms + - id: 56 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 20:17:08 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 20:22:08 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 2521e3e78c09e4bf631e2584059dc5e1413e5b68 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775765829.848890,VS0,VE94 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 114.2325ms + - id: 57 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 20:17:09 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 20:22:09 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 3386ca46000bdd5386d16868ac283e86eab222c0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775765829.968005,VS0,VE50 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 251.6121ms + duration: 65.7315ms --- -env_name: azdtest-w39e10d -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1769126940" +env_name: azdtest-d995307 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775765041" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp_RemoteBuild.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp_RemoteBuild.yaml index 6c2d33686f6..d366535cdfc 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp_RemoteBuild.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp_RemoteBuild.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations?api-version=2022-12-01 + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47785 + content_length: 47870 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"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northcentralus-az2"},{"logicalZone":"2","physicalZone":"northcentralus-az1"},{"logicalZone":"3","physicalZone":"northcentralus-az3"}]},{"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":[{"logicalZone":"1","physicalZone":"westus-az2"},{"logicalZone":"2","physicalZone":"westus-az1"},{"logicalZone":"3","physicalZone":"westus-az3"}]},{"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"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47785" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:34:13 GMT + - Thu, 09 Apr 2026 19:22:36 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 + - c4c3798f5563852ad2bca91fe5c3eaeb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 8f9de41c-e0e4-4a82-84af-b04c9140a1b6 + - 30599322-3cfb-4a87-a033-b2da2eb6a399 X-Ms-Routing-Request-Id: - - WESTUS:20260218T003414Z:8f9de41c-e0e4-4a82-84af-b04c9140a1b6 + - EASTUS:20260409T192237Z:30599322-3cfb-4a87-a033-b2da2eb6a399 X-Msedge-Ref: - - 'Ref A: E131309A9193406DBD6D44E58A022135 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:34:12Z' + - 'Ref A: 322B796FE9334BDFAA0BF65A349A2B06 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:36Z' status: 200 OK code: 200 - duration: 1.482013715s + duration: 1.180766291s - id: 1 request: proto: HTTP/1.1 @@ -91,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l2ebf26%27&api-version=2021-04-01 + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d23239f%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:34:14 GMT + - Thu, 09 Apr 2026 19:22:36 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 + - c4c3798f5563852ad2bca91fe5c3eaeb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - f6cdbdcd-9e6d-4f0b-b54a-c7a6a480c19a + - 6098987c-8fd2-4702-a8ba-6ba80d12f978 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003414Z:f6cdbdcd-9e6d-4f0b-b54a-c7a6a480c19a + - EASTUS:20260409T192237Z:6098987c-8fd2-4702-a8ba-6ba80d12f978 X-Msedge-Ref: - - 'Ref A: 79127D5AA6A5414DAC346A2FB98B144B Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:34:14Z' + - 'Ref A: BE2DE3BA087A47B6B144AE367F81032A Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:37Z' status: 200 OK code: 200 - duration: 150.084223ms + duration: 209.623292ms - id: 2 request: proto: HTTP/1.1 @@ -160,10 +160,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?api-version=2021-04-01 + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -171,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 157656 + content_length: 13479 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/AzureBackupRG_eastus2_1","name":"AzureBackupRG_eastus2_1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.RecoveryServices/","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/vivazqu-stuff","name":"vivazqu-stuff","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-8450","name":"rg-rajeshkamal-8450","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-9247","name":"rg-rajeshkamal-9247","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-6253","name":"rg-rajeshkamal-6253","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-5006","name":"rg-rajeshkamal-5006","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-4685","name":"rg-rajeshkamal-4685","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-7741","name":"rg-rajeshkamal-7741","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-5211","name":"rg-rajeshkamal-5211","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_samvaity","name":"SSS3PT_samvaity","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/static-test-resources","name":"static-test-resources","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"owners":"bebroder,wesh","DoNotDelete":"","purpose":"static data for live testing, e.g. trained models"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-devtestlabs-t4a1476d557974cd1","name":"rg-devtestlabs-t4a1476d557974cd1","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildNumber":"20241220.1","BuildId":"4427356","BuildReason":"Schedule","BuildJob":"windows2022_121_nettyhttp_NotFromSource_TestsOnly","ServiceDirectory":"devtestlabs","DeleteAfter":"2024-12-21T07:42:29.9932939Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-eventgrid-t31479aaaa2a4404a","name":"rg-eventgrid-t31479aaaa2a4404a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventgrid","DeleteAfter":"2025-02-03T20:23:47.9636986Z","BuildJob":"ubuntu2004_node_18x_max","Owners":"cloudtest","BuildId":"4528664","BuildNumber":"20250203.1","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-eventgrid-tde4e76058ab940fa","name":"rg-eventgrid-tde4e76058ab940fa","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"ubuntu2004_node_18x_max","BuildReason":"Schedule","BuildId":"4531867","ServiceDirectory":"eventgrid","Owners":"cloudtest","BuildNumber":"20250204.1","DeleteAfter":"2025-02-04T20:23:50.0608874Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-managednetworkfabric-t7f7108c9346a485d","name":"rg-managednetworkfabric-t7f7108c9346a485d","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Schedule","Owners":"cloudtest","DeleteAfter":"2025-02-10T02:24:22.5984747Z","ServiceDirectory":"managednetworkfabric","BuildJob":"windows2022_121_nettyhttp_NotFromSource_TestsOnly","BuildNumber":"20250209.1","BuildId":"4547793"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-azure-storage-blobs-td845d4b116564904","name":"SSS3PT_rg-azure-storage-blobs-td845d4b116564904","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"wesh","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_swathip","name":"SSS3PT_swathip","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-tls","name":"SSS3PT_anuchan-tls","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/azure-sdk-tests","name":"azure-sdk-tests","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"","Owners":"bebroder,wesh","purpose":"Used to store MI''s for connecting to the TME test sub and persistent resources need for compliance"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/vicolina-persistent","name":"vicolina-persistent","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-977","name":"testRG-977","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"02/18/2026 20:06:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-9405","name":"testRG-9405","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"09/14/2025 15:06:58"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-5824","name":"testRG-5824","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"11/17/2025 16:06:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-4836","name":"testRG-4836","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"11/04/2025 20:07:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-4711","name":"testRG-4711","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"02/28/2025 20:06:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-5272","name":"testRG-5272","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"12/11/2024 12:05:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-9629","name":"testRG-9629","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"12/11/2024 12:05:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-9091","name":"testRG-9091","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"11/16/2025 16:07:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-8293","name":"testRG-8293","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"09/27/2025 19:05:50"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/testRG-1397","name":"testRG-1397","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"test":"env","DeleteAfter":"12/12/2024 08:07:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"Owners":"jeffreychen"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/caperal-dev","name":"caperal-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_vigera","name":"SSS3PT_vigera","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/srnagar-rg","name":"srnagar-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ripark-these-are-a-few-of-my-favorite-things","name":"SSS3PT_rg-ripark-these-are-a-few-of-my-favorite-things","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rajesh-e2e-demo-rg","name":"rajesh-e2e-demo-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rajesh-e2e-rg","name":"rajesh-e2e-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-dev-mrp5f6","name":"rg-dev-mrp5f6","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-finitesendandreceive-gosb-7","name":"SSS3PT_go-go-finitesendandreceive-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","DeleteAfter":"2026-02-21T06:03:45.5575773Z","Owners":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-longrunningrenewlock-gosb-7","name":"SSS3PT_go-go-longrunningrenewlock-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:03:45.7556333Z","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-finitesessionswithchaos-gosb-7","name":"SSS3PT_go-go-finitesessionswithchaos-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-21T06:03:45.6537091Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-receivecancellation-gosb-7","name":"SSS3PT_go-go-receivecancellation-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","BuildJob":"","BuildId":"","Owners":"","DeleteAfter":"2026-02-21T06:03:53.6203716Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-batchinfinite-goeh-7","name":"SSS3PT_go-go-batchinfinite-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:04:07.2109643Z","BuildId":"","Owners":"","BuildReason":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-syncbatchweb-stress-py-eh-7","name":"SSS3PT_python-dockerfile-syncbatchweb-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2026-02-21T06:05:36.9572997Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-queuepullw-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-queuepullw-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","DeleteAfter":"2026-02-21T06:07:50.0031399Z","Owners":"","BuildReason":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-stress-cluster-storage","name":"SSS3PT_rg-stress-cluster-storage","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"environment":"storage","owners":"bebroder,ripark","purpose":"stress and load testing for storage SDKs","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-nodes-s1-stress-storage-storage","name":"SSS3PT_rg-nodes-s1-stress-storage-storage","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","managedBy":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/SSS3PT_rg-stress-cluster-storage/providers/Microsoft.ContainerService/managedClusters/stress-storage","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-storage","aks-managed-cluster-rg":"SSS3PT_rg-stress-cluster-storage","environment":"storage","owners":"bebroder,ripark","purpose":"stress and load testing for storage SDKs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-readsmall-java-storage-datalake-8","name":"SSS3PT_java-readsmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildId":"","BuildJob":"","BuildReason":"","DeleteAfter":"2026-02-21T06:06:39.3692891Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-readfilesmallasync-java-storage-datalake-8","name":"SSS3PT_java-readfilesmallasync-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","BuildId":"","BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:06:39.6828431Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-readfilelarge-java-storage-datalake-8","name":"SSS3PT_java-readfilelarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:06:39.7582451Z","BuildReason":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-readsmallasync-java-storage-datalake-8","name":"SSS3PT_java-readsmallasync-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:06:40.0283469Z","BuildReason":"","BuildId":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-readfilesmall-java-storage-datalake-8","name":"SSS3PT_java-readfilesmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:06:39.9855969Z","BuildNumber":"","BuildId":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-readlarge-java-storage-datalake-8","name":"SSS3PT_java-readlarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-21T06:07:56.4973136Z","BuildReason":"","BuildNumber":"","BuildId":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadfromfilelarge-java-storage-datalake-8","name":"SSS3PT_java-uploadfromfilelarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","Owners":"","BuildId":"","DeleteAfter":"2026-02-21T06:08:23.4329876Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-outputstreamsmall-java-storage-datalake-8","name":"SSS3PT_java-outputstreamsmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","Owners":"","BuildReason":"","BuildJob":"","DeleteAfter":"2026-02-21T06:08:23.3207015Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadsmall-java-storage-datalake-8","name":"SSS3PT_java-uploadsmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:08:23.2740036Z","BuildJob":"","Owners":"","BuildId":"","BuildReason":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-openinputstreamlarge-java-storage-datalake-8","name":"SSS3PT_java-openinputstreamlarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T06:08:23.4231906Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadsmallasync-java-storage-datalake-8","name":"SSS3PT_java-uploadsmallasync-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","BuildJob":"","Owners":"","DeleteAfter":"2026-02-21T06:08:23.6275653Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadlarge-java-storage-datalake-8","name":"SSS3PT_java-uploadlarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T06:08:23.5169378Z","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-flushsmallasync-java-storage-datalake-8","name":"SSS3PT_java-flushsmallasync-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:08:23.7100596Z","BuildJob":"","BuildNumber":"","BuildId":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-openinputstreamsmall-java-storage-datalake-8","name":"SSS3PT_java-openinputstreamsmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildJob":"","BuildId":"","BuildReason":"","DeleteAfter":"2026-02-21T06:08:23.3878053Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-outputstreamlarge-java-storage-datalake-8","name":"SSS3PT_java-outputstreamlarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","BuildId":"","BuildJob":"","Owners":"","DeleteAfter":"2026-02-21T06:08:23.7975635Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadfromfilesmall-java-storage-datalake-8","name":"SSS3PT_java-uploadfromfilesmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","BuildNumber":"","BuildReason":"","BuildJob":"","DeleteAfter":"2026-02-21T06:08:23.7932881Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-flushsmall-java-storage-datalake-8","name":"SSS3PT_java-flushsmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","BuildId":"","DeleteAfter":"2026-02-21T06:08:24.1495936Z","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendlarge-java-storage-datalake-8","name":"SSS3PT_java-appendlarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-21T06:08:24.4247137Z","BuildId":"","BuildReason":"","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendsmall-java-storage-datalake-8","name":"SSS3PT_java-appendsmall-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","DeleteAfter":"2026-02-21T06:08:24.7030904Z","BuildNumber":"","BuildReason":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-flushlarge-java-storage-datalake-8","name":"SSS3PT_java-flushlarge-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-21T06:08:24.7152967Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendasync-java-storage-datalake-8","name":"SSS3PT_java-appendasync-java-storage-datalake-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","BuildJob":"","BuildReason":"","DeleteAfter":"2026-02-21T06:08:25.2071767Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadfilesmall-java-storage-blob-8","name":"SSS3PT_java-downloadfilesmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildId":"","DeleteAfter":"2026-02-21T06:10:15.5397400Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadfileasync-java-storage-blob-8","name":"SSS3PT_java-downloadfileasync-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2026-02-21T06:10:15.7403445Z","Owners":"","BuildId":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadstreamasync-java-storage-blob-8","name":"SSS3PT_java-downloadstreamasync-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:10:16.4896251Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadstreamsmall-java-storage-blob-8","name":"SSS3PT_java-downloadstreamsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","BuildJob":"","Owners":"","DeleteAfter":"2026-02-21T06:10:16.3503801Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadstreamlarge-java-storage-blob-8","name":"SSS3PT_java-downloadstreamlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:10:16.3182730Z","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadcontentlarge-java-storage-blob-8","name":"SSS3PT_java-downloadcontentlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:10:17.1373633Z","BuildId":"","BuildReason":"","BuildNumber":"","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadcontentsmall-java-storage-blob-8","name":"SSS3PT_java-downloadcontentsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","Owners":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:10:23.6920480Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-inputstreamsmall-java-storage-blob-8","name":"SSS3PT_java-inputstreamsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:10:47.9351212Z","BuildId":"","Owners":"","BuildReason":"","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-inputstreamlarge-java-storage-blob-8","name":"SSS3PT_java-inputstreamlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildReason":"","DeleteAfter":"2026-02-21T06:11:12.6871011Z","BuildId":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-blockblobuploadlarge-java-storage-blob-8","name":"SSS3PT_java-blockblobuploadlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:11:20.9954009Z","Owners":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendoutputstreamsmall-java-storage-blob-8","name":"SSS3PT_java-appendoutputstreamsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","DeleteAfter":"2026-02-21T06:11:20.9373545Z","BuildReason":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendblocklarge-java-storage-blob-8","name":"SSS3PT_java-appendblocklarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","BuildJob":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-21T06:11:21.2733223Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendoutputstreamlarge-java-storage-blob-8","name":"SSS3PT_java-appendoutputstreamlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","BuildId":"","DeleteAfter":"2026-02-21T06:11:21.5423015Z","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-blockoutputstreamlarge-java-storage-blob-8","name":"SSS3PT_java-blockoutputstreamlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildReason":"","BuildJob":"","BuildId":"","DeleteAfter":"2026-02-21T06:11:21.9157989Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-blockblobuploadsmall-java-storage-blob-8","name":"SSS3PT_java-blockblobuploadsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:11:21.9346502Z","BuildJob":"","BuildNumber":"","BuildId":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelreadsmall-java-storage-blob-8","name":"SSS3PT_java-bytechannelreadsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T06:11:21.9119958Z","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelwritesmall-java-storage-blob-8","name":"SSS3PT_java-bytechannelwritesmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","BuildJob":"","BuildId":"","Owners":"","DeleteAfter":"2026-02-21T06:11:21.9648504Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-commitblocklistsmall-java-storage-blob-8","name":"SSS3PT_java-commitblocklistsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildId":"","DeleteAfter":"2026-02-21T06:11:21.5835495Z","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelreadlarge-java-storage-blob-8","name":"SSS3PT_java-bytechannelreadlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","DeleteAfter":"2026-02-21T06:11:22.1494036Z","BuildJob":"","BuildReason":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendblocksmall-java-storage-blob-8","name":"SSS3PT_java-appendblocksmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","BuildJob":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T06:11:22.0047070Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-appendblockasync-java-storage-blob-8","name":"SSS3PT_java-appendblockasync-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildJob":"","BuildId":"","DeleteAfter":"2026-02-21T06:11:21.8908681Z","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-commitblocklistlarge-java-storage-blob-8","name":"SSS3PT_java-commitblocklistlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2026-02-21T06:11:22.2116207Z","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadasyncsmall-java-storage-blob-8","name":"SSS3PT_java-uploadasyncsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:12:01.6622717Z","BuildJob":"","BuildId":"","BuildReason":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-stageblocksmall-java-storage-blob-8","name":"SSS3PT_java-stageblocksmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:12:01.6484175Z","BuildReason":"","BuildId":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadpageslarge-java-storage-blob-8","name":"SSS3PT_java-uploadpageslarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","Owners":"","BuildReason":"","BuildJob":"","DeleteAfter":"2026-02-21T06:12:01.7733464Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadfromfilesmall-java-storage-blob-8","name":"SSS3PT_java-uploadfromfilesmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","Owners":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:12:01.8149394Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-pageoutputstreamsmall-java-storage-blob-8","name":"SSS3PT_java-pageoutputstreamsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","DeleteAfter":"2026-02-21T06:12:01.8120260Z","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-pageoutputstreamlarge-java-storage-blob-8","name":"SSS3PT_java-pageoutputstreamlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:12:01.9449455Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadfromfilelarge-java-storage-blob-8","name":"SSS3PT_java-uploadfromfilelarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","BuildReason":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2026-02-21T06:12:02.6120161Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadsmall-java-storage-blob-8","name":"SSS3PT_java-uploadsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","DeleteAfter":"2026-02-21T06:12:02.7087708Z","BuildId":"","BuildReason":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadlarge-java-storage-blob-8","name":"SSS3PT_java-uploadlarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","DeleteAfter":"2026-02-21T06:12:02.7760272Z","BuildJob":"","BuildId":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-stageblocklarge-java-storage-blob-8","name":"SSS3PT_java-stageblocklarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:12:02.8218638Z","BuildId":"","BuildNumber":"","BuildReason":"","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadpagessmall-java-storage-blob-8","name":"SSS3PT_java-uploadpagessmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-21T06:12:03.1034864Z","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelwritelarge-java-storage-blob-8","name":"SSS3PT_java-bytechannelwritelarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T06:12:03.5692075Z","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-inputstreamlarge-java-storage-file-share-8","name":"SSS3PT_java-inputstreamlarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T06:12:37.9086442Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadlarge-java-storage-file-share-8","name":"SSS3PT_java-uploadlarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-21T06:12:37.7499047Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadfromfilelarge-java-storage-file-share-8","name":"SSS3PT_java-uploadfromfilelarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildReason":"","BuildId":"","DeleteAfter":"2026-02-21T06:12:37.8359204Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-outputstreamlarge-java-storage-file-share-8","name":"SSS3PT_java-outputstreamlarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","DeleteAfter":"2026-02-21T06:12:38.0839051Z","Owners":"","BuildReason":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadlarge-java-storage-file-share-8","name":"SSS3PT_java-downloadlarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T06:12:37.7021723Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadtofileasync-java-storage-file-share-8","name":"SSS3PT_java-downloadtofileasync-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-21T06:12:38.3439322Z","BuildJob":"","BuildNumber":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-outputstreamsmall-java-storage-file-share-8","name":"SSS3PT_java-outputstreamsmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:12:47.2534767Z","BuildReason":"","BuildJob":"","Owners":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadrangesmall-java-storage-file-share-8","name":"SSS3PT_java-uploadrangesmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","BuildReason":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2026-02-21T06:12:47.2093616Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-inputstreamsmall-java-storage-file-share-8","name":"SSS3PT_java-inputstreamsmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2026-02-21T06:12:47.3484407Z","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadfromfilesmall-java-storage-file-share-8","name":"SSS3PT_java-uploadfromfilesmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","Owners":"","BuildId":"","DeleteAfter":"2026-02-21T06:12:47.9841010Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadtofilelarge-java-storage-file-share-8","name":"SSS3PT_java-downloadtofilelarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:12:47.6355788Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadsmall-java-storage-file-share-8","name":"SSS3PT_java-downloadsmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","BuildJob":"","DeleteAfter":"2026-02-21T06:12:47.6320421Z","BuildReason":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadsmall-java-storage-file-share-8","name":"SSS3PT_java-uploadsmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:12:47.5647066Z","BuildId":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadtofilesmall-java-storage-file-share-8","name":"SSS3PT_java-downloadtofilesmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildJob":"","BuildReason":"","BuildId":"","DeleteAfter":"2026-02-21T06:12:48.0591847Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelreadlarge-java-storage-file-share-8","name":"SSS3PT_java-bytechannelreadlarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","BuildJob":"","BuildId":"","DeleteAfter":"2026-02-21T06:12:48.1973580Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadsmallasync-java-storage-file-share-8","name":"SSS3PT_java-downloadsmallasync-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","DeleteAfter":"2026-02-21T06:12:48.1189471Z","BuildJob":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-uploadrangelarge-java-storage-file-share-8","name":"SSS3PT_java-uploadrangelarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","BuildId":"","Owners":"","BuildReason":"","DeleteAfter":"2026-02-21T06:12:48.1580925Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelreadsmall-java-storage-file-share-8","name":"SSS3PT_java-bytechannelreadsmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:12:48.2936964Z","BuildReason":"","Owners":"","BuildId":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelwritesmall-java-storage-file-share-8","name":"SSS3PT_java-bytechannelwritesmall-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:13:05.3597098Z","BuildJob":"","BuildId":"","Owners":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-bytechannelwritelarge-java-storage-file-share-8","name":"SSS3PT_java-bytechannelwritelarge-java-storage-file-share-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:13:07.7888305Z","Owners":"","BuildReason":"","BuildJob":"","BuildId":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-smoketest-tabf2c9e5aa274cff","name":"SSS3PT_rg-smoketest-tabf2c9e5aa274cff","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260217.1","BuildId":"5889905","BuildJob":"Run Smoke Test MacOS Python_310_Mac (AzureCloud)","DeleteAfter":"2026-02-18T03:57:49.7466140Z","ServiceDirectory":"/Users/runner/work/1/s/common/smoketest/","Owners":"runner","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-smoketest-t31250fcabac14386","name":"SSS3PT_rg-smoketest-t31250fcabac14386","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Run Smoke Test MacOS Python_39_Mac (AzureCloud)","ServiceDirectory":"/Users/runner/work/1/s/common/smoketest/","BuildReason":"Schedule","Owners":"runner","BuildNumber":"20260217.1","BuildId":"5889905","DeleteAfter":"2026-02-18T04:01:29.8070510Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/srnagar-uae-rg","name":"srnagar-uae-rg","type":"Microsoft.Resources/resourceGroups","location":"uaenorth","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-hemarina-agentic","name":"rg-hemarina-agentic","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-jairmyree-6363","name":"rg-jairmyree-6363","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-dev-prod-msi","name":"rg-dev-prod-msi","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-vivazqu-prod","name":"rg-vivazqu-prod","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-prod","environment-type":"prod"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/v-minghc-test","name":"v-minghc-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-anannyapatra-0778","name":"rg-anannyapatra-0778","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-jeffreychen-7973","name":"rg-jeffreychen-7973","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/djurek-aca-sfi-manual-test","name":"djurek-aca-sfi-manual-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-anannyapatra-0021","name":"rg-anannyapatra-0021","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd188","name":"SSS3PT_anuchan-mcp15ccd188","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-ripark-hello-world","name":"rg-ripark-hello-world","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-ripark-2","name":"rg-ripark-2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-ripark-hello","name":"rg-ripark-hello","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-scbedd","name":"rg-scbedd","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-vigera-3241","name":"rg-vigera-3241","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/anuchan-to-del","name":"anuchan-to-del","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-srnagar-2170","name":"rg-srnagar-2170","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd203","name":"SSS3PT_anuchan-mcp15ccd203","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-postgres1101B"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/srnagar-eus-rg","name":"srnagar-eus-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd205","name":"SSS3PT_anuchan-mcp15ccd205","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azmcp-azd-2"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd210","name":"SSS3PT_anuchan-mcp15ccd210","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-readonly-storage"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-v-zhongleima-1452","name":"rg-v-zhongleima-1452","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd211","name":"SSS3PT_anuchan-mcp15ccd211","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azmcp-storage-deploy-1010a"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/vivazqu-auth-for-projects","name":"vivazqu-auth-for-projects","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-vigera-test2","name":"rg-vigera-test2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vigera-test2"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd220","name":"SSS3PT_anuchan-mcp15ccd220","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azd-azmcp-https-06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd221","name":"SSS3PT_anuchan-mcp15ccd221","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azd-postgres-01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd222","name":"SSS3PT_anuchan-mcp15ccd222","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azd-azmcp-mf-01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd223","name":"SSS3PT_anuchan-mcp15ccd223","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azmcp-remote-explore"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-ripark-new1","name":"rg-ripark-new1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-srnagar-4758","name":"rg-srnagar-4758","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd224","name":"SSS3PT_anuchan-mcp15ccd224","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azmcp-postgres-11-25-A"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd226","name":"SSS3PT_anuchan-mcp15ccd226","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azmcp-vscode-connect"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp-local-15ccd01","name":"SSS3PT_anuchan-mcp-local-15ccd01","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azmcp-local-test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-vivazqu-todo-node-aca","name":"rg-vivazqu-todo-node-aca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-todo-node-aca"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/anuchan-azmcp-obo-1","name":"anuchan-azmcp-obo-1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azmcp-obo-1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-rajeshkamal-2264","name":"rg-rajeshkamal-2264","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-vivazqu-snake","name":"rg-vivazqu-snake","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-snake"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-dadjokes-021025","name":"rg-wabrez-dadjokes-021025","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-dadjokes-021025"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-aca-021326-04","name":"rg-wabrez-aca-021326-04","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-aca-021326-04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/ai_aiy3r67gozxihnm_20c7498c-068c-47a5-8f7c-aa622ce40d50_managed","name":"ai_aiy3r67gozxihnm_20c7498c-068c-47a5-8f7c-aa622ce40d50_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ml-t366211b371ec4e5c/providers/microsoft.insights/components/aiy3r67gozxihnm","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lad5dec","name":"rg-azdtest-lad5dec","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lad5dec","DeleteAfter":"2026-02-18T01:10:45Z"},"properties":{"provisioningState":"Deleting"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-ld39cca","name":"rg-azdtest-ld39cca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-ld39cca","DeleteAfter":"2026-02-18T01:21:03Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_shreja","name":"SSS3PT_shreja","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/mcp-static-4d04","name":"mcp-static-4d04","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":"","owners":"wesh, pahallis","description":"Static resources used for Azure MCP tests"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-jairmyree-mcp","name":"rg-jairmyree-mcp","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/kaghiya-12345","name":"kaghiya-12345","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_mredding-agenttesting","name":"SSS3PT_mredding-agenttesting","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_ankushb-mcp677d49ed","name":"SSS3PT_ankushb-mcp677d49ed","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ankushb","DeleteAfter":"2025-12-31T10:20:04.7538059Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tf8bd8aa824364920","name":"SSS3PT_rg-tf8bd8aa824364920","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest","DeleteAfter":"2025-12-13T12:01:48.8003019Z","BuildNumber":"20251212.14","Owners":"cloudtest","BuildId":"5667319"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t547747878802407f","name":"SSS3PT_rg-t547747878802407f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","DeleteAfter":"2025-12-20T02:28:34.9308863Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5688689","BuildReason":"PullRequest","BuildNumber":"20251219.8"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t0938a0d1a86d46d3","name":"SSS3PT_rg-t0938a0d1a86d46d3","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5688723","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2025-12-20T02:56:03.1427773Z","BuildNumber":"20251219.9","Owners":"cloudtest","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-td400db3907bf41bd","name":"SSS3PT_rg-td400db3907bf41bd","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"PullRequest","BuildNumber":"20251220.1","Owners":"cloudtest","BuildId":"5691194","DeleteAfter":"2025-12-21T05:15:50.6953014Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t43bb587c35de41ab","name":"SSS3PT_rg-t43bb587c35de41ab","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"PullRequest","Owners":"cloudtest","DeleteAfter":"2025-12-21T10:54:24.7842917Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5691347","BuildNumber":"20251220.2"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tad550de0190a4592","name":"SSS3PT_rg-tad550de0190a4592","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"PullRequest","DeleteAfter":"2025-12-21T13:57:35.8264043Z","BuildNumber":"20251220.3","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5691413","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t9af5d25ca773419e","name":"SSS3PT_rg-t9af5d25ca773419e","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20251220.4","Owners":"cloudtest","BuildReason":"PullRequest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2025-12-21T14:08:57.6134676Z","BuildId":"5691416"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ta198a75a46fa4a22","name":"SSS3PT_rg-ta198a75a46fa4a22","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5694881","DeleteAfter":"2025-12-23T07:52:49.0380240Z","BuildReason":"PullRequest","Owners":"cloudtest","BuildNumber":"20251222.1","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tbde289d419ab4cd3","name":"SSS3PT_rg-tbde289d419ab4cd3","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-25T04:17:08.8016236Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest","BuildId":"5701437","Owners":"cloudtest","BuildNumber":"20251224.2"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-te083de0cb5c94857","name":"SSS3PT_rg-te083de0cb5c94857","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest","BuildNumber":"20251226.1","Owners":"cloudtest","DeleteAfter":"2025-12-26T21:33:36.7596526Z","BuildId":"5704518"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_ankushb-mcpee8699fa","name":"SSS3PT_ankushb-mcpee8699fa","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ankushb","DeleteAfter":"2025-12-27T08:53:06.1423074Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_ankushb-mcpdf2625c7","name":"SSS3PT_ankushb-mcpdf2625c7","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-27T08:56:08.6416186Z","Owners":"ankushb"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ta18e00645b5d47fc","name":"SSS3PT_rg-ta18e00645b5d47fc","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"PullRequest","BuildNumber":"20251227.1","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2025-12-27T16:38:33.5713875Z","BuildId":"5705760"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t490aa13d76d946ca","name":"SSS3PT_rg-t490aa13d76d946ca","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-27T17:43:32.4993165Z","BuildId":"5705791","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest","BuildNumber":"20251227.2","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ta5f27c1c61804608","name":"SSS3PT_rg-ta5f27c1c61804608","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20251229.2","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2025-12-30T05:19:19.4049822Z","Owners":"cloudtest","BuildReason":"PullRequest","BuildId":"5708443"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_vigera-mcp5ec49d22","name":"SSS3PT_vigera-mcp5ec49d22","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-30T09:24:37.0245880Z","Owners":"vigera"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tae983c336d7e451c","name":"SSS3PT_rg-tae983c336d7e451c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20251229.3","Owners":"cloudtest","BuildReason":"PullRequest","BuildId":"5708477","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2025-12-30T05:42:11.6710853Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t6ea6f137c9ce4c08","name":"SSS3PT_rg-t6ea6f137c9ce4c08","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"PullRequest","BuildNumber":"20251229.4","DeleteAfter":"2025-12-30T05:51:24.5939857Z","Owners":"cloudtest","BuildId":"5708502","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-te47df261cf3c45a5","name":"SSS3PT_rg-te47df261cf3c45a5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2025-12-31T03:07:38.3452036Z","BuildNumber":"20251230.3","Owners":"cloudtest","BuildId":"5710343","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t4820849b16434415","name":"SSS3PT_rg-t4820849b16434415","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5710861","DeleteAfter":"2025-12-31T09:05:31.3232392Z","BuildNumber":"20251230.5","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t92ad9b83f97c421a","name":"SSS3PT_rg-t92ad9b83f97c421a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildNumber":"20251230.6","BuildReason":"PullRequest","Owners":"cloudtest","DeleteAfter":"2025-12-31T09:42:14.6067798Z","BuildId":"5710962"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ta0a0db6bd9d44077","name":"SSS3PT_rg-ta0a0db6bd9d44077","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20251230.7","BuildReason":"PullRequest","BuildId":"5711014","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2025-12-31T10:19:57.0923655Z","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t6f0333a1ce664775","name":"SSS3PT_rg-t6f0333a1ce664775","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","DeleteAfter":"2025-12-31T11:22:53.0978164Z","BuildReason":"PullRequest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5711083","BuildNumber":"20251230.8"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t3cb1aacbce974f68","name":"SSS3PT_rg-t3cb1aacbce974f68","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-01T18:50:50.1926278Z","BuildId":"5713094","Owners":"cloudtest","BuildNumber":"20260101.1","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tfb4d77f0a5a14f6d","name":"SSS3PT_rg-tfb4d77f0a5a14f6d","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Schedule","DeleteAfter":"2026-01-02T19:02:58.5927775Z","BuildNumber":"20260102.1","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildId":"5714119"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t2210cdada95c4e1f","name":"SSS3PT_rg-t2210cdada95c4e1f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildNumber":"20260105.1","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Schedule","BuildId":"5718319","DeleteAfter":"2026-01-05T19:04:27.4560748Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t8946e89b51a04115","name":"SSS3PT_rg-t8946e89b51a04115","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Schedule","BuildId":"5722545","DeleteAfter":"2026-01-06T19:06:33.3611477Z","BuildNumber":"20260106.1","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_alzimmer-mcpc09794e5","name":"SSS3PT_alzimmer-mcpc09794e5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"alzimmer","DeleteAfter":"2026-01-08T08:46:28.7036707Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t14e4bcc0692d4c0a","name":"SSS3PT_rg-t14e4bcc0692d4c0a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5725573","BuildReason":"Manual","BuildNumber":"20260106.2","DeleteAfter":"2026-01-07T10:47:14.2984081Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-td3887b6a07664558","name":"SSS3PT_rg-td3887b6a07664558","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-07T19:06:31.2546190Z","BuildNumber":"20260107.1","BuildReason":"Schedule","Owners":"cloudtest","BuildId":"5726915"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tdc4cfc3f849940b6","name":"SSS3PT_rg-tdc4cfc3f849940b6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5728354","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual","DeleteAfter":"2026-01-08T04:13:36.2154591Z","BuildNumber":"20260107.2"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t0df7b7f3e1af4e63","name":"SSS3PT_rg-t0df7b7f3e1af4e63","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildNumber":"20260107.3","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-08T08:05:52.4327259Z","BuildReason":"Manual","BuildId":"5729533"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tbee518205fb8438e","name":"SSS3PT_rg-tbee518205fb8438e","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5732164","BuildNumber":"20260108.1","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-08T19:02:17.2067075Z","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t68c0800fa218431c","name":"SSS3PT_rg-t68c0800fa218431c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260109.1","BuildReason":"Schedule","BuildId":"5736641","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","DeleteAfter":"2026-01-09T19:06:41.4222173Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t84d285dfbd834c6c","name":"SSS3PT_rg-t84d285dfbd834c6c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Manual","Owners":"cloudtest","DeleteAfter":"2026-01-10T03:18:43.4202508Z","BuildNumber":"20260109.2","BuildId":"5737661","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t3f18972e75924e47","name":"SSS3PT_rg-t3f18972e75924e47","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildNumber":"20260109.10","BuildId":"5737953","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual","DeleteAfter":"2026-01-10T04:40:21.7648696Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t3e7a52e3e8904db5","name":"SSS3PT_rg-t3e7a52e3e8904db5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-10T08:08:54.4273763Z","BuildReason":"PullRequest","BuildNumber":"20260109.19","Owners":"cloudtest","BuildId":"5738756"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t7cff874c8af84a5a","name":"SSS3PT_rg-t7cff874c8af84a5a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5739182","BuildReason":"PullRequest","Owners":"cloudtest","DeleteAfter":"2026-01-10T10:06:43.1491896Z","BuildNumber":"20260109.23","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t39cc328dd76e4edf","name":"SSS3PT_rg-t39cc328dd76e4edf","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Schedule","DeleteAfter":"2026-01-12T18:56:17.5765591Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5741897","BuildNumber":"20260112.1","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t819f3d6df98b4abc","name":"SSS3PT_rg-t819f3d6df98b4abc","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260112.2","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5742636","Owners":"cloudtest","BuildReason":"Manual","DeleteAfter":"2026-01-13T00:32:53.9532802Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t5b9dc9e6ec034191","name":"SSS3PT_rg-t5b9dc9e6ec034191","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5742808","DeleteAfter":"2026-01-13T02:11:10.5336703Z","BuildNumber":"20260112.6","BuildReason":"Manual","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t3e4d4591bc224077","name":"SSS3PT_rg-t3e4d4591bc224077","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5743025","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-13T03:26:38.0245049Z","BuildReason":"Manual","BuildNumber":"20260112.12","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-td053d6905c76460d","name":"SSS3PT_rg-td053d6905c76460d","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260112.21","BuildId":"5744329","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildReason":"Manual","DeleteAfter":"2026-01-13T08:14:36.7131564Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t398c8027eecc413a","name":"SSS3PT_rg-t398c8027eecc413a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260113.1","DeleteAfter":"2026-01-13T18:57:01.0556060Z","BuildReason":"Schedule","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5746586","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t0f3a3b846d1d44bd","name":"SSS3PT_rg-t0f3a3b846d1d44bd","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-14T05:30:49.4411503Z","Owners":"cloudtest","BuildId":"5748494","BuildNumber":"20260113.2","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-taccddd338938452f","name":"SSS3PT_rg-taccddd338938452f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildNumber":"20260114.1","BuildReason":"Schedule","Owners":"cloudtest","BuildId":"5751662","DeleteAfter":"2026-01-14T19:00:47.7529718Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-taa9e477288e342d0","name":"SSS3PT_rg-taa9e477288e342d0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildNumber":"20260115.1","BuildReason":"Schedule","BuildId":"5756845","DeleteAfter":"2026-01-15T19:00:03.1034698Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t82953d1d94b94661","name":"SSS3PT_rg-t82953d1d94b94661","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5758333","DeleteAfter":"2026-01-16T03:38:46.5370094Z","BuildNumber":"20260115.2","BuildReason":"Manual"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t7dec7af423934874","name":"SSS3PT_rg-t7dec7af423934874","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260115.3","BuildReason":"Manual","DeleteAfter":"2026-01-16T05:22:09.3657546Z","Owners":"cloudtest","BuildId":"5758852","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tf031c55e62a6435a","name":"SSS3PT_rg-tf031c55e62a6435a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5762495","BuildNumber":"20260116.1","Owners":"cloudtest","DeleteAfter":"2026-01-16T19:08:13.5665375Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t0bd74a02dc5b49ee","name":"SSS3PT_rg-t0bd74a02dc5b49ee","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-17T05:32:22.0400372Z","BuildNumber":"20260116.2","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual","BuildId":"5764752","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t703030de0c31485c","name":"SSS3PT_rg-t703030de0c31485c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260116.4","Owners":"cloudtest","DeleteAfter":"2026-01-17T10:10:25.3253987Z","BuildId":"5765770","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t8b6e443529f14af8","name":"SSS3PT_rg-t8b6e443529f14af8","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260117.1","Owners":"cloudtest","BuildReason":"Manual","BuildId":"5767366","DeleteAfter":"2026-01-18T15:22:33.9360097Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t12d2899760914b1a","name":"SSS3PT_rg-t12d2899760914b1a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260118.1","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual","BuildId":"5768734","DeleteAfter":"2026-01-19T15:10:40.3463182Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tbfd19f9130af4bc8","name":"SSS3PT_rg-tbfd19f9130af4bc8","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5769763","DeleteAfter":"2026-01-19T18:57:49.2482998Z","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildNumber":"20260119.1","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tbc587d7e948740e1","name":"SSS3PT_rg-tbc587d7e948740e1","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-20T18:58:52.0301549Z","BuildReason":"Schedule","BuildId":"5773706","BuildNumber":"20260120.1","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t62321ace78f34a37","name":"SSS3PT_rg-t62321ace78f34a37","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-21T06:21:00.7187622Z","BuildNumber":"20260120.4","BuildReason":"Manual","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildId":"5776015"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t156f2cd997d94793","name":"SSS3PT_rg-t156f2cd997d94793","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260120.5","BuildReason":"Manual","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-21T07:02:40.9882596Z","Owners":"cloudtest","BuildId":"5776317"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t7a684041fc914a84","name":"SSS3PT_rg-t7a684041fc914a84","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5776932","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-21T08:50:28.1387926Z","Owners":"cloudtest","BuildReason":"Manual","BuildNumber":"20260120.7"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tb0c0879bb8ab4499","name":"SSS3PT_rg-tb0c0879bb8ab4499","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildId":"5779146","DeleteAfter":"2026-01-21T19:02:32.6794031Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Schedule","BuildNumber":"20260121.1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t9dbe836e45ab48f0","name":"SSS3PT_rg-t9dbe836e45ab48f0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5779761","DeleteAfter":"2026-01-22T00:08:39.8542035Z","BuildReason":"Manual","BuildNumber":"20260121.2","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ta80e3513415f4d69","name":"SSS3PT_rg-ta80e3513415f4d69","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Manual","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5780030","Owners":"cloudtest","BuildNumber":"20260121.3","DeleteAfter":"2026-01-22T01:35:53.4817442Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t1f55046ffeb042cd","name":"SSS3PT_rg-t1f55046ffeb042cd","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Manual","BuildNumber":"20260121.4","DeleteAfter":"2026-01-22T05:01:32.4983534Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5780886","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t1df9456705bd4d56","name":"SSS3PT_rg-t1df9456705bd4d56","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5780954","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-22T05:15:17.5880675Z","BuildNumber":"20260121.5","BuildReason":"Manual"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t8192204b9c344f13","name":"SSS3PT_rg-t8192204b9c344f13","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260121.7","BuildReason":"Manual","Owners":"cloudtest","DeleteAfter":"2026-01-22T07:31:49.2120240Z","BuildId":"5781382","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-confidentialledger-t368ec732d6c54329","name":"SSS3PT_rg-confidentialledger-t368ec732d6c54329","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Windows2022_NET80_PackageRef_Debug","ServiceDirectory":"confidentialledger","Owners":"cloudtest","DeleteAfter":"2026-01-22T15:14:58.1696367Z","BuildReason":"Schedule","BuildNumber":"20260121.1","BuildId":"5783396"},"properties":{"provisioningState":"Deleting"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t1716e8f974434840","name":"SSS3PT_rg-t1716e8f974434840","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Schedule","Owners":"cloudtest","BuildNumber":"20260122.1","BuildId":"5784265","DeleteAfter":"2026-01-22T19:03:15.2670790Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tdaf0f012108b4741","name":"SSS3PT_rg-tdaf0f012108b4741","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildReason":"Manual","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildNumber":"20260122.2","BuildId":"5785469","DeleteAfter":"2026-01-23T01:59:45.9245165Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t5c6847f2cdf84534","name":"SSS3PT_rg-t5c6847f2cdf84534","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest","BuildNumber":"20260122.22","DeleteAfter":"2026-01-23T05:23:29.2628160Z","BuildId":"5786411"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t72c79f098e82474f","name":"SSS3PT_rg-t72c79f098e82474f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-23T06:34:50.2850872Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildNumber":"20260122.3","BuildId":"5786620","BuildReason":"Manual"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t2dad7cbfa86241a2","name":"SSS3PT_rg-t2dad7cbfa86241a2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-23T07:04:40.5488615Z","Owners":"cloudtest","BuildNumber":"20260122.4","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual","BuildId":"5786745"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tbd5e9948fc2546d3","name":"SSS3PT_rg-tbd5e9948fc2546d3","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildReason":"Schedule","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-23T19:01:05.8418128Z","BuildId":"5789914","BuildNumber":"20260123.1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t09078f91514145a7","name":"SSS3PT_rg-t09078f91514145a7","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildNumber":"20260123.2","BuildReason":"Manual","DeleteAfter":"2026-01-24T02:26:17.0969489Z","BuildId":"5790910"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t2bf9f1f7e99d4a5f","name":"SSS3PT_rg-t2bf9f1f7e99d4a5f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Manual","BuildNumber":"20260125.1","DeleteAfter":"2026-01-26T16:01:16.9375124Z","Owners":"cloudtest","BuildId":"5795649","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t46768fdced93476d","name":"SSS3PT_rg-t46768fdced93476d","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Schedule","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-26T19:01:51.6612462Z","BuildId":"5796342","BuildNumber":"20260126.1","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t7508436f54c444b8","name":"SSS3PT_rg-t7508436f54c444b8","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildNumber":"20260127.1","DeleteAfter":"2026-01-27T19:04:04.5631070Z","Owners":"cloudtest","BuildId":"5801713","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tf5d66ac165394e6c","name":"SSS3PT_rg-tf5d66ac165394e6c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260127.2","BuildId":"5803255","BuildReason":"Manual","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-28T02:52:37.3612852Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t9cf37bb8d5b74b16","name":"SSS3PT_rg-t9cf37bb8d5b74b16","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260127.3","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"Manual","DeleteAfter":"2026-01-28T08:05:46.4408013Z","BuildId":"5804890","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t21d663d7b37b43d2","name":"SSS3PT_rg-t21d663d7b37b43d2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-01-28T19:05:36.2174676Z","BuildNumber":"20260128.1","BuildId":"5807638","BuildReason":"Schedule","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-confidentialledger-te70889c5a4bf414f","name":"SSS3PT_rg-confidentialledger-te70889c5a4bf414f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260128.1","DeleteAfter":"2026-01-29T15:15:21.9036006Z","BuildId":"5812603","BuildReason":"Schedule","Owners":"cloudtest","BuildJob":"Ubuntu2404_NET90_ProjectRef_Release","ServiceDirectory":"confidentialledger"},"properties":{"provisioningState":"Deleting"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t39a642b64bd2487c","name":"SSS3PT_rg-t39a642b64bd2487c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-01-29T19:00:24.4256997Z","BuildId":"5813172","BuildReason":"Schedule","BuildNumber":"20260129.1","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t0e6a0555ecad4e16","name":"SSS3PT_rg-t0e6a0555ecad4e16","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildReason":"Manual","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildNumber":"20260129.2","BuildId":"5815963","DeleteAfter":"2026-01-30T09:01:56.6322094Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t64a006e783504ff4","name":"SSS3PT_rg-t64a006e783504ff4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildReason":"Schedule","BuildId":"5818514","BuildNumber":"20260130.1","DeleteAfter":"2026-01-30T19:01:35.6217753Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t43ca605af13d4473","name":"SSS3PT_rg-t43ca605af13d4473","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Schedule","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","DeleteAfter":"2026-02-03T19:18:10.4313441Z","BuildNumber":"20260203.1","BuildId":"5830462"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t004bf626caf44f07","name":"SSS3PT_rg-t004bf626caf44f07","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildId":"5831730","BuildReason":"PullRequest","DeleteAfter":"2026-02-04T02:55:18.4883435Z","BuildNumber":"20260203.1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-td54aab4ac3ea439f","name":"SSS3PT_rg-td54aab4ac3ea439f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-02-04T03:03:33.9025406Z","BuildId":"5831730","BuildNumber":"20260203.1","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-te4a66584b95c4a41","name":"SSS3PT_rg-te4a66584b95c4a41","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Manual","BuildNumber":"20260203.2","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","DeleteAfter":"2026-02-04T08:38:06.2425709Z","BuildId":"5833372"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t80d5d25622654036","name":"SSS3PT_rg-t80d5d25622654036","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2026-02-04T19:15:31.4873045Z","BuildReason":"Schedule","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5836526","BuildNumber":"20260204.1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tb5f110c0aa004527","name":"SSS3PT_rg-tb5f110c0aa004527","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildReason":"PullRequest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5838800","DeleteAfter":"2026-02-05T06:10:58.2419052Z","BuildNumber":"20260204.1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tf885f42801784132","name":"SSS3PT_rg-tf885f42801784132","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest","BuildNumber":"20260204.1","DeleteAfter":"2026-02-05T06:18:59.8388298Z","Owners":"cloudtest","BuildId":"5838800"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tb375077e5acb4fe6","name":"SSS3PT_rg-tb375077e5acb4fe6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260204.2","Owners":"cloudtest","BuildId":"5839000","DeleteAfter":"2026-02-05T07:21:56.8163090Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t74f2bb3530864cb4","name":"SSS3PT_rg-t74f2bb3530864cb4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5839000","BuildNumber":"20260204.2","Owners":"cloudtest","BuildReason":"PullRequest","DeleteAfter":"2026-02-05T07:29:46.1545414Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tae23da9d7809418e","name":"SSS3PT_rg-tae23da9d7809418e","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5840862","BuildReason":"Manual","BuildNumber":"20260204.10","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","Owners":"cloudtest","DeleteAfter":"2026-02-05T14:49:21.5797742Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t7563a39c061645a1","name":"SSS3PT_rg-t7563a39c061645a1","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-02-05T14:50:00.9229264Z","BuildNumber":"20260204.5","BuildId":"5840825","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-tc18479c2d3c246f9","name":"SSS3PT_rg-tc18479c2d3c246f9","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260204.5","BuildId":"5840825","Owners":"cloudtest","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildReason":"PullRequest","DeleteAfter":"2026-02-05T14:57:44.2772814Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t31d18e49bb814a26","name":"SSS3PT_rg-t31d18e49bb814a26","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Schedule","Owners":"cloudtest","BuildNumber":"20260205.1","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-02-05T19:14:54.2402145Z","BuildId":"5841968"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t3626d9f32ce84b56","name":"SSS3PT_rg-t3626d9f32ce84b56","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5844167","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","DeleteAfter":"2026-02-06T06:07:33.3352369Z","BuildNumber":"20260205.1","BuildReason":"PullRequest","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t9f69c3dd53f14909","name":"SSS3PT_rg-t9f69c3dd53f14909","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildNumber":"20260205.1","Owners":"cloudtest","BuildId":"5844167","DeleteAfter":"2026-02-06T06:15:04.9414752Z","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-55","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-55","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","BuildReason":"","BuildJob":"","DeleteAfter":"2026-02-23T20:02:48.0454939Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-yumengstorage","name":"SSS3PT_rg-yumengstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"yumeng","ServiceDirectory":"storage","DeleteAfter":"2026-02-22T19:39:55.5138227Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-smoketest-t7026f2280e584ed5","name":"SSS3PT_rg-smoketest-t7026f2280e584ed5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildId":"5889905","ServiceDirectory":"/mnt/vss/_work/1/s/common/smoketest/","Owners":"cloudtest","BuildReason":"Schedule","DeleteAfter":"2026-02-18T03:50:00.8727085Z","BuildJob":"Run Smoke Test Windows Python_39_Windows (AzureCloud)","BuildNumber":"20260217.1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-smoketest-tcc91fe69e2fc45eb","name":"SSS3PT_rg-smoketest-tcc91fe69e2fc45eb","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"cloudtest","DeleteAfter":"2026-02-18T03:50:07.2503670Z","ServiceDirectory":"/mnt/vss/_work/1/s/common/smoketest/","BuildId":"5889905","BuildNumber":"20260217.1","BuildReason":"Schedule","BuildJob":"Run Smoke Test Linux Python_310_Linux (AzureCloud)"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-smoketest-t8e99ee0907cb4bd0","name":"SSS3PT_rg-smoketest-t8e99ee0907cb4bd0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"/mnt/vss/_work/1/s/common/smoketest/","DeleteAfter":"2026-02-18T03:50:14.6060559Z","BuildReason":"Schedule","BuildId":"5889905","Owners":"cloudtest","BuildNumber":"20260217.1","BuildJob":"Run Smoke Test Linux Python_39_Linux (AzureCloud)"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-smoketest-teb9ed1d13f0643ea","name":"SSS3PT_rg-smoketest-teb9ed1d13f0643ea","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"/mnt/vss/_work/1/s/common/smoketest/","BuildNumber":"20260217.1","BuildJob":"Run Smoke Test Windows Python_310_Windows (AzureCloud)","BuildId":"5889905","DeleteAfter":"2026-02-18T03:50:28.2637021Z","Owners":"cloudtest","BuildReason":"Schedule"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-56","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-56","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2026-02-24T20:05:01.5351338Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-56","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-56","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","BuildJob":"","BuildReason":"","DeleteAfter":"2026-02-24T20:03:51.4028636Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-56","name":"SSS3PT_examples-deploycustom-deployment-example-56","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildNumber":"","BuildId":"","DeleteAfter":"2026-02-24T20:03:59.5171941Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-storage-te30f71318da74552","name":"SSS3PT_rg-storage-te30f71318da74552","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"Owners":"cloudtest","BuildJob":"ubuntu2404_18_okhttp_NotFromSource_TestsOnly","ServiceDirectory":"storage","BuildNumber":"20260217.2","BuildId":"5890787","DeleteAfter":"2026-02-18T06:27:01.1952683Z","BuildReason":"PullRequest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-healthinsights-ta05ae23560134573","name":"SSS3PT_rg-healthinsights-ta05ae23560134573","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"BuildJob":"windows2022_125_nettyhttp_NotFromSource_TestsOnly","BuildReason":"Schedule","DeleteAfter":"2026-02-18T08:30:34.2017134Z","Owners":"cloudtest","BuildNumber":"20260217.1","ServiceDirectory":"healthinsights","BuildId":"5891463"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-aztables-t539789840a134619","name":"SSS3PT_rg-aztables-t539789840a134619","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260217.1","BuildId":"5891468","BuildReason":"Schedule","BuildJob":"Live Test on ubuntu_go_1254","Owners":"cloudtest","DeleteAfter":"2026-02-18T08:30:34.9935552Z","ServiceDirectory":"data/aztables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-hemarina-test3","name":"rg-hemarina-test3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"hemarina-test3"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-stress-cluster-pg","name":"SSS3PT_rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-nodes-s1-stress-pg-pg","name":"SSS3PT_rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/SSS3PT_rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"SSS3PT_rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-t530160c935824ec9","name":"SSS3PT_rg-t530160c935824ec9","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildReason":"Manual","Owners":"cloudtest","DeleteAfter":"2026-02-05T14:29:00.4677214Z","BuildJob":"Live tests - tools/Azure.Mcp.Tools.StorageSync","BuildId":"5840795","BuildNumber":"20260204.8"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-50","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-50","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-18T20:03:59.3775695Z","BuildJob":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-50","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-50","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","BuildReason":"","BuildJob":"","Owners":"","DeleteAfter":"2026-02-18T20:04:08.7592422Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-50","name":"SSS3PT_examples-deploydefault-deployment-example-50","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2026-02-18T20:04:25.7385246Z","Owners":"","BuildId":"","BuildJob":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-51","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-51","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildJob":"","DeleteAfter":"2026-02-19T20:03:54.8614231Z","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-52","name":"SSS3PT_examples-deploycustom-deployment-example-52","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-20T20:03:31.8737357Z","BuildJob":"","BuildNumber":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-8","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:04:26.2941521Z","BuildId":"","BuildReason":"","BuildNumber":"","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-constantdetach-gosb-7","name":"SSS3PT_go-go-constantdetach-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","DeleteAfter":"2026-02-21T06:03:42.9045540Z","BuildNumber":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-sendandreceivedrain-gosb-7","name":"SSS3PT_go-go-sendandreceivedrain-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildReason":"","DeleteAfter":"2026-02-21T06:03:52.2940226Z","BuildNumber":"","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-mostlyidlereceiver-gosb-7","name":"SSS3PT_go-go-mostlyidlereceiver-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:03:54.3408705Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-openclosemeasurements-gosb-7","name":"SSS3PT_go-go-openclosemeasurements-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","DeleteAfter":"2026-02-21T06:03:53.7455409Z","BuildJob":"","BuildId":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-benchmarkbackupsettlementleak-gosb-7","name":"SSS3PT_go-go-benchmarkbackupsettlementleak-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:03:54.2416454Z","BuildId":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-batchinfinitechaos-goeh-7","name":"SSS3PT_go-go-batchinfinitechaos-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildId":"","BuildJob":"","Owners":"","DeleteAfter":"2026-02-21T06:04:04.5634948Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-batchsync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-batchsync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","DeleteAfter":"2026-02-21T06:04:57.4394357Z","BuildReason":"","Owners":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-bpsync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-bpsync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:05:37.6625792Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-syncwebsockets-stress-py-eh-7","name":"SSS3PT_python-dockerfile-syncwebsockets-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-21T06:05:37.6050246Z","BuildReason":"","BuildJob":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-queue-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-queue-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","BuildId":"","BuildJob":"","Owners":"","DeleteAfter":"2026-02-21T06:06:25.2170626Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-queuepull-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-queuepull-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","BuildId":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:07:50.8433495Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-abatchw-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-abatchw-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:07:50.0155107Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-aqueuepullw-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-aqueuepullw-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","Owners":"","BuildReason":"","BuildId":"","DeleteAfter":"2026-02-21T06:07:52.1424545Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-downloadfilelarge-java-storage-blob-8","name":"SSS3PT_java-downloadfilelarge-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:10:19.5652920Z","BuildJob":"","BuildId":"","BuildNumber":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_java-blockoutputstreamsmall-java-storage-blob-8","name":"SSS3PT_java-blockoutputstreamsmall-java-storage-blob-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","BuildReason":"","DeleteAfter":"2026-02-21T06:11:22.5698925Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-53","name":"SSS3PT_examples-deploydefault-deployment-example-53","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","BuildId":"","DeleteAfter":"2026-02-21T20:03:05.3523271Z","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-53","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-53","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","DeleteAfter":"2026-02-21T20:05:05.7488412Z","BuildNumber":"","BuildId":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-55","name":"SSS3PT_examples-deploycustom-deployment-example-55","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2026-02-23T20:04:34.9156935Z","BuildId":"","BuildReason":"","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-paulvanecktables01","name":"SSS3PT_rg-paulvanecktables01","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"pvaneck","DeleteAfter":"2026-02-22T05:49:07.1128713Z","ServiceDirectory":"tables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-56","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-56","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","BuildId":"","BuildReason":"","Owners":"","DeleteAfter":"2026-02-24T20:05:01.9806896Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/sdk-test-rg-delete","name":"sdk-test-rg-delete","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"DeleteAfter":"02/18/2026 12:06:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/mcpatino-ledger","name":"mcpatino-ledger","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/llawrg","name":"llawrg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"02/19/2026 00:08:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-jc-aca-3","name":"rg-jc-aca-3","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"jc-aca-3","environment-type":"dev","DeleteAfter":"02/19/2026 00:08:41"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-jairmyree-ai","name":"rg-jairmyree-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-lab-dev-7llomv","name":"rg-lab-dev-7llomv","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"lab-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-kaghiya","name":"rg-kaghiya","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_samvaity-documentintelligence","name":"SSS3PT_samvaity-documentintelligence","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_myjstest","name":"SSS3PT_myjstest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/16/2025 03:07:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/srnagar-rg-1","name":"srnagar-rg-1","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/storagesync-rg","name":"storagesync-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/ai_aiut56f7fju7uoa_67ee79ae-99db-4656-b2ec-d96321add8f6_managed","name":"ai_aiut56f7fju7uoa_67ee79ae-99db-4656-b2ec-d96321add8f6_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ml-t2f36a1ed52f045d3/providers/microsoft.insights/components/aiut56f7fju7uoa","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_xiangyan","name":"SSS3PT_xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/azure-sdk-infra","name":"azure-sdk-infra","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"djurek,wesh,bebroder","DoNotDelete":"","purpose":"Infrastructure resources that cannot be kept in azure-sdk-tests"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/anna-rg","name":"anna-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anna-rg","name":"SSS3PT_anna-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_paulvaneck","name":"SSS3PT_paulvaneck","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/vigera-test_group","name":"vigera-test_group","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/vigera-group","name":"vigera-group","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-stress-cluster-prod","name":"SSS3PT_rg-stress-cluster-prod","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"environment":"Prod","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-nodes-s1-stress-prod-prod","name":"rg-nodes-s1-stress-prod-prod","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/SSS3PT_rg-stress-cluster-prod/providers/Microsoft.ContainerService/managedClusters/stress-prod","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-prod","aks-managed-cluster-rg":"SSS3PT_rg-stress-cluster-prod","environment":"Prod","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-vivazqu-agg","name":"rg-vivazqu-agg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"vivazqu-agg"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/anuchan-azd-fabric-02","name":"anuchan-azd-fabric-02","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azd-fabric-2"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-50","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-50","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-18T20:02:49.6533237Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-50","name":"SSS3PT_examples-deploycustom-deployment-example-50","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-18T20:04:25.7430623Z","Owners":"","BuildJob":"","BuildId":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_yumeng_storage","name":"SSS3PT_yumeng_storage","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-51","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-51","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-19T20:03:54.7089433Z","BuildNumber":"","BuildJob":"","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-51","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-51","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","DeleteAfter":"2026-02-19T20:02:44.9031613Z","Owners":"","BuildReason":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-51","name":"SSS3PT_examples-deploycustom-deployment-example-51","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","BuildId":"","Owners":"","BuildJob":"","DeleteAfter":"2026-02-19T20:03:37.0283262Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-51","name":"SSS3PT_examples-deploydefault-deployment-example-51","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","DeleteAfter":"2026-02-19T20:03:37.6716716Z","BuildReason":"","BuildId":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-aca-021326","name":"rg-wabrez-aca-021326","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-aca-021326"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-52","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-52","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","DeleteAfter":"2026-02-20T20:04:37.5470580Z","Owners":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-52","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-52","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","DeleteAfter":"2026-02-20T20:03:27.2483018Z","BuildJob":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-52","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-52","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-20T20:04:47.5696630Z","BuildId":"","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-52","name":"SSS3PT_examples-deploydefault-deployment-example-52","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","DeleteAfter":"2026-02-20T20:03:31.8000490Z","Owners":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-aca-021326-03","name":"rg-wabrez-aca-021326-03","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-aca-021326-03"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-8","name":"SSS3PT_examples-deploycustom-deployment-example-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:03:08.1848935Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-8","name":"SSS3PT_examples-deploydefault-deployment-example-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","DeleteAfter":"2026-02-21T06:03:08.0609615Z","BuildNumber":"","BuildJob":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-8","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-21T06:04:29.2797316Z","BuildReason":"","BuildId":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-8","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-8","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:03:18.7036047Z","BuildId":"","BuildNumber":"","Owners":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-constantdetachmentsender-gosb-7","name":"SSS3PT_go-go-constantdetachmentsender-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","BuildReason":"","BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:03:42.8064794Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-finitepeeks-gosb-7","name":"SSS3PT_go-go-finitepeeks-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:03:42.8233572Z","Owners":"","BuildJob":"","BuildNumber":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-idlefastreconnect-gosb-7","name":"SSS3PT_go-go-idlefastreconnect-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:03:43.4830127Z","BuildId":"","Owners":"","BuildNumber":"","BuildJob":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-infinitesendandreceivewithchaos-gosb-7","name":"SSS3PT_go-go-infinitesendandreceivewithchaos-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","Owners":"","BuildId":"","DeleteAfter":"2026-02-21T06:03:45.7186501Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-infinitesendandreceive-gosb-7","name":"SSS3PT_go-go-infinitesendandreceive-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:03:49.7923691Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-finitesessions-gosb-7","name":"SSS3PT_go-go-finitesessions-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","BuildReason":"","DeleteAfter":"2026-02-21T06:03:50.2247119Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-emptysessions-gosb-7","name":"SSS3PT_go-go-emptysessions-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","DeleteAfter":"2026-02-21T06:03:50.0158256Z","BuildJob":"","Owners":"","BuildId":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-rapidopenclose-gosb-7","name":"SSS3PT_go-go-rapidopenclose-gosb-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:03:53.9632486Z","BuildReason":"","BuildNumber":"","BuildJob":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-batch-goeh-7","name":"SSS3PT_go-go-batch-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","DeleteAfter":"2026-02-21T06:04:04.0095428Z","BuildId":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-processorinfinite-goeh-7","name":"SSS3PT_go-go-processorinfinite-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","BuildJob":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-21T06:04:04.0112249Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-processor-goeh-7","name":"SSS3PT_go-go-processor-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2026-02-21T06:04:04.8070668Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-batchprefetchoff-goeh-7","name":"SSS3PT_go-go-batchprefetchoff-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:04:05.7255110Z","Owners":"","BuildNumber":"","BuildJob":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-processorprefetchoff-goeh-7","name":"SSS3PT_go-go-processorprefetchoff-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2026-02-21T06:04:06.0398577Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-multibalance-goeh-7","name":"SSS3PT_go-go-multibalance-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:04:07.4270796Z","BuildJob":"","BuildReason":"","Owners":"","BuildId":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_go-go-processorchaos-goeh-7","name":"SSS3PT_go-go-processorchaos-goeh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2026-02-21T06:04:07.6006725Z","BuildId":"","BuildJob":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-batchasync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-batchasync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-21T06:04:57.1821230Z","BuildNumber":"","BuildJob":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-eventasync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-eventasync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:04:56.8192594Z","BuildNumber":"","Owners":"","BuildJob":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-bplistsync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-bplistsync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2026-02-21T06:04:56.5806076Z","BuildId":"","BuildJob":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-eventsync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-eventsync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:04:57.5339518Z","BuildNumber":"","BuildReason":"","BuildJob":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-bpasync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-bpasync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:05:37.1201439Z","Owners":"","BuildId":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-asyncwebsockets-stress-py-eh-7","name":"SSS3PT_python-dockerfile-asyncwebsockets-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","BuildJob":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:05:37.9931108Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-asyncbatchweb-stress-py-eh-7","name":"SSS3PT_python-dockerfile-asyncbatchweb-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","DeleteAfter":"2026-02-21T06:05:37.7398939Z","BuildNumber":"","BuildJob":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-bplistasync-stress-py-eh-7","name":"SSS3PT_python-dockerfile-bplistasync-stress-py-eh-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","BuildNumber":"","DeleteAfter":"2026-02-21T06:05:37.7232511Z","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-aqueue-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-aqueue-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:06:25.1332645Z","BuildJob":"","BuildId":"","BuildNumber":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-abatch-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-abatch-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildReason":"","BuildId":"","BuildJob":"","DeleteAfter":"2026-02-21T06:07:50.0232781Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-queuew-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-queuew-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","DeleteAfter":"2026-02-21T06:07:50.0509773Z","Owners":"","BuildReason":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-batchw-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-batchw-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","DeleteAfter":"2026-02-21T06:07:50.2379551Z","Owners":"","BuildReason":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-aqueuew-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-aqueuew-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","Owners":"","DeleteAfter":"2026-02-21T06:07:50.2255331Z","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-aqueuepull-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-aqueuepull-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:07:50.3829241Z","BuildId":"","Owners":"","BuildReason":"","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_python-dockerfile-batch-py-sb-stress-test-7","name":"SSS3PT_python-dockerfile-batch-py-sb-stress-test-7","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-21T06:07:50.2840412Z","BuildJob":"","BuildId":"","BuildReason":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-53","name":"SSS3PT_examples-deploycustom-deployment-example-53","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","DeleteAfter":"2026-02-21T20:03:07.0155641Z","BuildNumber":"","BuildReason":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-53","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-53","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2026-02-21T20:05:15.6043246Z","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-53","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-53","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2026-02-21T20:04:01.2401186Z","Owners":"","BuildReason":"","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-54","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-54","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2026-02-22T20:04:22.3994260Z","BuildId":"","BuildReason":"","Owners":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-nonparallelexample-parallel-deployment-example-54","name":"SSS3PT_examples-nonparallelexample-parallel-deployment-example-54","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2026-02-22T20:03:02.5092517Z","BuildId":"","BuildReason":"","Owners":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-54","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-54","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","DeleteAfter":"2026-02-22T20:04:12.7316330Z","BuildNumber":"","BuildReason":"","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploycustom-deployment-example-54","name":"SSS3PT_examples-deploycustom-deployment-example-54","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildReason":"","DeleteAfter":"2026-02-22T20:03:05.6359113Z","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-54","name":"SSS3PT_examples-deploydefault-deployment-example-54","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","DeleteAfter":"2026-02-22T20:03:05.7119784Z","BuildJob":"","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexampleb-parallel-deployment-example-55","name":"SSS3PT_examples-parallelexampleb-parallel-deployment-example-55","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","Owners":"","DeleteAfter":"2026-02-23T20:04:07.9511126Z","BuildNumber":"","BuildJob":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-parallelexamplea-parallel-deployment-example-55","name":"SSS3PT_examples-parallelexamplea-parallel-deployment-example-55","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildJob":"","DeleteAfter":"2026-02-23T20:03:58.5354590Z","Owners":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-55","name":"SSS3PT_examples-deploydefault-deployment-example-55","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","Owners":"","BuildId":"","DeleteAfter":"2026-02-23T20:04:33.6065644Z","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_examples-deploydefault-deployment-example-56","name":"SSS3PT_examples-deploydefault-deployment-example-56","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2026-02-24T20:03:58.2218893Z","BuildReason":"","BuildJob":"","BuildId":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-healthinsights-td45c586c40264c52","name":"SSS3PT_rg-healthinsights-td45c586c40264c52","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"BuildJob":"ubuntu2404_125_nettyhttp_NotFromSource_AggregateReports_SkipRebuild_Verify","BuildReason":"Schedule","DeleteAfter":"2026-02-18T08:30:02.4254822Z","BuildId":"5891463","BuildNumber":"20260217.1","ServiceDirectory":"healthinsights","Owners":"cloudtest"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-aztables-t8b033b71740d4749","name":"SSS3PT_rg-aztables-t8b033b71740d4749","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"BuildNumber":"20260217.1","BuildId":"5891468","DeleteAfter":"2026-02-18T08:31:13.4927991Z","BuildReason":"Schedule","Owners":"cloudtest","ServiceDirectory":"data/aztables","BuildJob":"Live Test on ubuntu_go_12410"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/sociallinker","name":"sociallinker","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shayne","name":"shayne","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-eastus","name":"cloud-shell-storage-eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/Default-ApplicationInsights-EastUS","name":"Default-ApplicationInsights-EastUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/first-timers-only","name":"first-timers-only","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shboyer-ghost","name":"shboyer-ghost","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates","name":"azureadvocates","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","name":"ai_social-linker-insights_3fa5b67d-c8e6-49af-a503-9d89749e7e7f_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/microsoft.insights/components/social-linker-insights","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceai","name":"rg-unconferenceai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"unconferenceai"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azdevtools-pm","name":"azdevtools-pm","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","name":"pmdataagent-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-func-flex-demo","name":"rg-func-flex-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"func-flex-demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/devtopromoter","name":"devtopromoter","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/nerddinner-mvc4","name":"nerddinner-mvc4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-EUS2","name":"DefaultResourceGroup-EUS2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","name":"rg-shboyer-4385","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-octopets-2025","name":"rg-octopets-2025","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"aspire":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py","name":"rg-scope-func-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","name":"ai_appi-vc3jdcjrljj4e_70a530ba-6d9e-4b6d-9e72-b0eb53149134_managed","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-scope-func-py/providers/microsoft.insights/components/appi-vc3jdcjrljj4e","tags":{"azd-env-name":"scope-func-py"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recorded-swa-session","name":"rg-recorded-swa-session","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dash","name":"rg-ontology-dash","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dash"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ontology-dashboard","name":"rg-ontology-dashboard","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ontology-dashboard"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-fortune-peter","name":"rg-fortune-peter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fortune-peter"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recipe-remix-dev","name":"rg-recipe-remix-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"recipe-remix-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-bug-detective-dev","name":"rg-bug-detective-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"bug-detective-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","name":"rg-shboyer-af-ts","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-echo-ts-fresh","name":"rg-echo-ts-fresh","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"echo-ts-fresh"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ts-mf-testing","name":"rg-ts-mf-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ts-mf-testing"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/waza-docs-rg","name":"waza-docs-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-collab-plan","name":"rg-collab-plan","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-task-tracker-demo","name":"rg-task-tracker-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-demo-deploy-k8m3","name":"rg-demo-deploy-k8m3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"demo-deploy-k8m3"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-forge-plugin-dev","name":"rg-forge-plugin-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"forge-plugin-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-test-agent","name":"rg-test-agent","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev","name":"rg-waza-platform-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"waza-platform-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20","name":"rg-azdtest-d7ffc20","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2026-04-09T19:14:45Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/cloud-shell-storage-southcentralus","name":"cloud-shell-storage-southcentralus","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-CUS","name":"DefaultResourceGroup-CUS","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/swa-tutorial","name":"swa-tutorial","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-unconferenceapp","name":"rg-unconferenceapp","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"unconferenceapp"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/securePaaSNspRg-global","name":"securePaaSNspRg-global","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","name":"rg-copilot-demo","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-calc","name":"rg-calc","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"calc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-email-router-agent","name":"rg-email-router-agent","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"email-router-agent"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-david-test","name":"rg-david-test","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"david-test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-claw","name":"rg-foundry-claw","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-claw"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus","name":"rg-foundry-helper-ncus","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"foundry-helper-ncus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/DefaultResourceGroup-USW3","name":"DefaultResourceGroup-USW3","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "157656" + - "13479" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:34:14 GMT + - Thu, 09 Apr 2026 19:22:36 GMT Expires: - "-1" Pragma: @@ -194,20 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 + - c4c3798f5563852ad2bca91fe5c3eaeb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 5f57bf16-84ec-4f26-a7f9-323c65bc2e01 + - f2c35e12-0c6b-4991-bd59-cbc67d29c71a X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003414Z:5f57bf16-84ec-4f26-a7f9-323c65bc2e01 + - EASTUS2:20260409T192237Z:f2c35e12-0c6b-4991-bd59-cbc67d29c71a X-Msedge-Ref: - - 'Ref A: F9A5FDC099374627BC2A770E0460F5FC Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:34:14Z' + - 'Ref A: 1C114C31BAA94DD6888C1036343FFA6F Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:37Z' status: 200 OK code: 200 - duration: 78.207219ms + duration: 153.724417ms - id: 3 request: proto: HTTP/1.1 @@ -229,10 +229,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -240,18 +240,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 120946 + content_length: 957504 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "120946" + - "957504" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:34:15 GMT + - Thu, 09 Apr 2026 19:22:40 GMT Expires: - "-1" Pragma: @@ -263,68 +263,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 + - c4c3798f5563852ad2bca91fe5c3eaeb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 3ef4bf8f-222c-41ae-a200-ca7954c4b10d + - f2f3a21d-436d-4a5f-8283-060ae0d9e796 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003416Z:3ef4bf8f-222c-41ae-a200-ca7954c4b10d + - EASTUS:20260409T192241Z:f2f3a21d-436d-4a5f-8283-060ae0d9e796 X-Msedge-Ref: - - 'Ref A: F6F5B45760A644D88B4B7A2FDA516EB3 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:34:15Z' + - 'Ref A: B1DA6E668AEC4914B552F75ACB1104F7 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:37Z' status: 200 OK code: 200 - duration: 954.421803ms + duration: 3.726913666s - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 7663 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l2ebf26","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":"10898219461876186438"}},"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":"4963480331615759327"}},"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.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''law-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"sku":{"name":"PerGB2018"}},"tags":"[variables(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"workloadProfiles":[{"workloadProfileType":"Consumption","name":"consumption"}],"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"tags":"[variables(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.App/containerApps","apiVersion":"2024-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","identity":{"type":"UserAssigned","userAssignedIdentities":{"[format(''{0}'', resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))))]":{}}},"properties":{"environmentId":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","configuration":{"activeRevisionsMode":"Single","ingress":{"external":true,"targetPort":8080,"transport":"http","allowInsecure":false},"registries":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]","identity":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}]},"template":{"containers":[{"image":"nginx","name":"app"}],"scale":{"minReplicas":1}}},"tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''app''))]","dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.App/containerApps'', format(''app-{0}'', variables(''resourceToken''))), ''2024-03-01'').configuration.ingress.fqdn)]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"}}}},"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]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"}}}},"tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "7663" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846/validate?api-version=2021-04-01 - method: POST + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2722 + content_length: 893739 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"},"properties":{"templateHash":"10898219461876186438","parameters":{"environmentName":{"type":"String","value":"azdtest-l2ebf26"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-18T01:34:16Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-18T00:34:16.4110901Z","duration":"PT0S","correlationId":"ae765b5ea6bdeeb9589a7ecc70ac1d72","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-l2ebf26","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l2ebf26"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/providers/Microsoft.Authorization/roleAssignments/96612637-69f1-58b1-9947-02c4af78682c"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2722" + - "893739" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:34:21 GMT + - Thu, 09 Apr 2026 19:22:44 GMT Expires: - "-1" Pragma: @@ -336,70 +330,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "2999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "199" + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 7d909338-3f4b-4137-91f1-6b6ddba68b15 + - cdf99cc1-9bb8-4264-a9e0-bc718bf990b8 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003421Z:7d909338-3f4b-4137-91f1-6b6ddba68b15 + - EASTUS:20260409T192244Z:cdf99cc1-9bb8-4264-a9e0-bc718bf990b8 X-Msedge-Ref: - - 'Ref A: 1AAD7CEB2E59402F90C10800206BBD5C Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:34:16Z' + - 'Ref A: 49E28285A57C4073A6B3BEFF3C4A4A95 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:41Z' status: 200 OK code: 200 - duration: 5.569175327s + duration: 2.871140125s - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 7663 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l2ebf26","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":"10898219461876186438"}},"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":"4963480331615759327"}},"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.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''law-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"sku":{"name":"PerGB2018"}},"tags":"[variables(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"workloadProfiles":[{"workloadProfileType":"Consumption","name":"consumption"}],"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"tags":"[variables(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.App/containerApps","apiVersion":"2024-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","identity":{"type":"UserAssigned","userAssignedIdentities":{"[format(''{0}'', resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))))]":{}}},"properties":{"environmentId":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","configuration":{"activeRevisionsMode":"Single","ingress":{"external":true,"targetPort":8080,"transport":"http","allowInsecure":false},"registries":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]","identity":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}]},"template":{"containers":[{"image":"nginx","name":"app"}],"scale":{"minReplicas":1}}},"tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''app''))]","dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.App/containerApps'', format(''app-{0}'', variables(''resourceToken''))), ''2024-03-01'').configuration.ingress.fqdn)]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"}}}},"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]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"}}}},"tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "7663" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846?api-version=2021-04-01 - method: PUT + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1412 + content_length: 515084 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"},"properties":{"templateHash":"10898219461876186438","parameters":{"environmentName":{"type":"String","value":"azdtest-l2ebf26"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-18T01:34:21Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-18T00:34:21.8688736Z","duration":"PT0.0001069S","correlationId":"ae765b5ea6bdeeb9589a7ecc70ac1d72","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-l2ebf26","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l2ebf26"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846/operationStatuses/08584302320236026107?api-version=2021-04-01&t=639069716646657766&c=MIIHhzCCBm-gAwIBAgITfAo16o_0DOVz2kga3gAACjXqjzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMjExMDY0MzI5WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6Lh0c_IWEeKPUpwwHqrekcsDnbjkLX7k2UR61Zp254cIsgsKUMkc8oNceote8MVgXcPHwrTWYDaG_Lq0IxI8l2kLHoucPJ0H87D5XpdUmndOu30ZR0nO4ePmJ7CYEEogHS4a3NjMXFZiES3dxQxJYFJVtMVyFXXWFNBH7XwGbi7T1m5K2mfTRCc6fzsphBzH4uqWHMmayNXqGv_pxeQzr6UbLEdTVdW7h-ffd8hWR6yFHvBZGGZGXeh3QGOTpn8dWBmyyewDm_r0iOlhjLRK2ykJsK-3nfdzIXEH5hFfNRTmr50rHzy9mzSj6g-Div2LpVEG5Tp66B1z8mQh5jmn0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQRBtACpaWDfb2P-3QGcREdiEaZ0jAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACux_NmhhSn1UGkO_KLh7fywUnbwtZ2l0gUaKjM2P6OZ-ehohScqAp1N0cE2GLEa_Mio241IrwyzQZV6VxoPg3lCEqY_AbRg4iQnCUBQH8cuGXYm2UKVOys2b-N43tiHXxz5pYdkjWbQ0ZUisVbnJHiPvAX9jlzw-w-dlfq76btCcBFm4rCza4UTY3DF27TnhaX5iXfiKFVgc55Oe0tGtj6ZHmzKnF0ctgtefbrPIoAVq4OovLgJ5WF8mGBu_nXkBZzsHESnOic7bPduMcSY7l8b6QIdZ_Nr_iG5IdXTVJFKy8NunNpCzLgPiOjxI5_u-BR_ABOruNMYgf0raWd9gJA&s=PdzTBHwKeJnYwoODWt1kxZOqMfhXtbeThR7ZNkvgZkZXEC0mg2w4LKDyo1FcnEGU70MVyXY_TzAv3D9QdfYVs1ZE0X4WWFOCCQrRTmj2w-U4lzgA86S3pWG-gwwuxRsd4jyiRMhmp5pNtAKIToPbAg2K_IyxCU72Tx1_LFvMT7BCKsEm2liGYpxmeETc_BPUgSPL1WP5DUhOPUpzz1R1czVACC77IqP6JHsP946FE5VmQ6xBSeUTHeN8PFNjytsJYFRbKwBm91qQdojSUkRr41CQ1aZ3fvgryxGZFm24mi5qJpyXodLAgeEAb_wJmKuA0jDy-gbtjgXg46dYMvwGqA&h=3dUGkOECDJJZMqk_NmKZhpkn_V7Xp0JH9riLYYG_NeA Cache-Control: - no-cache Content-Length: - - "1412" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:34:24 GMT + - Thu, 09 Apr 2026 19:22:45 GMT Expires: - "-1" Pragma: @@ -411,22 +397,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - X-Ms-Deployment-Engine-Version: - - 1.573.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "2999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "199" + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - bd39d372-cddf-43b0-9bed-c6bab35789dd + - 35719170-460d-4852-a0d5-83ed9c0f8ee9 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003424Z:bd39d372-cddf-43b0-9bed-c6bab35789dd + - EASTUS:20260409T192246Z:35719170-460d-4852-a0d5-83ed9c0f8ee9 X-Msedge-Ref: - - 'Ref A: 53E2AA1043FA4A15847C90B99175C6B4 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:34:21Z' - status: 201 Created - code: 201 - duration: 3.041042675s + - 'Ref A: 9BC055853D164777BEF412EAA271A950 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:44Z' + status: 200 OK + code: 200 + duration: 1.677562875s - id: 6 request: proto: HTTP/1.1 @@ -446,10 +430,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846/operationStatuses/08584302320236026107?api-version=2021-04-01&t=639069716646657766&c=MIIHhzCCBm-gAwIBAgITfAo16o_0DOVz2kga3gAACjXqjzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMjExMDY0MzI5WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6Lh0c_IWEeKPUpwwHqrekcsDnbjkLX7k2UR61Zp254cIsgsKUMkc8oNceote8MVgXcPHwrTWYDaG_Lq0IxI8l2kLHoucPJ0H87D5XpdUmndOu30ZR0nO4ePmJ7CYEEogHS4a3NjMXFZiES3dxQxJYFJVtMVyFXXWFNBH7XwGbi7T1m5K2mfTRCc6fzsphBzH4uqWHMmayNXqGv_pxeQzr6UbLEdTVdW7h-ffd8hWR6yFHvBZGGZGXeh3QGOTpn8dWBmyyewDm_r0iOlhjLRK2ykJsK-3nfdzIXEH5hFfNRTmr50rHzy9mzSj6g-Div2LpVEG5Tp66B1z8mQh5jmn0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQRBtACpaWDfb2P-3QGcREdiEaZ0jAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACux_NmhhSn1UGkO_KLh7fywUnbwtZ2l0gUaKjM2P6OZ-ehohScqAp1N0cE2GLEa_Mio241IrwyzQZV6VxoPg3lCEqY_AbRg4iQnCUBQH8cuGXYm2UKVOys2b-N43tiHXxz5pYdkjWbQ0ZUisVbnJHiPvAX9jlzw-w-dlfq76btCcBFm4rCza4UTY3DF27TnhaX5iXfiKFVgc55Oe0tGtj6ZHmzKnF0ctgtefbrPIoAVq4OovLgJ5WF8mGBu_nXkBZzsHESnOic7bPduMcSY7l8b6QIdZ_Nr_iG5IdXTVJFKy8NunNpCzLgPiOjxI5_u-BR_ABOruNMYgf0raWd9gJA&s=PdzTBHwKeJnYwoODWt1kxZOqMfhXtbeThR7ZNkvgZkZXEC0mg2w4LKDyo1FcnEGU70MVyXY_TzAv3D9QdfYVs1ZE0X4WWFOCCQrRTmj2w-U4lzgA86S3pWG-gwwuxRsd4jyiRMhmp5pNtAKIToPbAg2K_IyxCU72Tx1_LFvMT7BCKsEm2liGYpxmeETc_BPUgSPL1WP5DUhOPUpzz1R1czVACC77IqP6JHsP946FE5VmQ6xBSeUTHeN8PFNjytsJYFRbKwBm91qQdojSUkRr41CQ1aZ3fvgryxGZFm24mi5qJpyXodLAgeEAb_wJmKuA0jDy-gbtjgXg46dYMvwGqA&h=3dUGkOECDJJZMqk_NmKZhpkn_V7Xp0JH9riLYYG_NeA + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -457,18 +441,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 415580 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:37:57 GMT + - Thu, 09 Apr 2026 19:22:46 GMT Expires: - "-1" Pragma: @@ -480,20 +464,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 + - c4c3798f5563852ad2bca91fe5c3eaeb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 08e83c99-f70d-4569-8e59-ae7ebe93f3b3 + - e274ecbf-d0d6-4308-a1d0-28cb6a0a5723 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003757Z:08e83c99-f70d-4569-8e59-ae7ebe93f3b3 + - EASTUS:20260409T192247Z:e274ecbf-d0d6-4308-a1d0-28cb6a0a5723 X-Msedge-Ref: - - 'Ref A: 5825AED5E8FC4F5096A2EB38372221F4 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:37:57Z' + - 'Ref A: 1F9F1608A6FE403DAC2C2EFB56CB667D Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:46Z' status: 200 OK code: 200 - duration: 347.191522ms + duration: 739.874625ms - id: 7 request: proto: HTTP/1.1 @@ -513,10 +497,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846?api-version=2021-04-01 + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -524,18 +508,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2804 + content_length: 136970 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"},"properties":{"templateHash":"10898219461876186438","parameters":{"environmentName":{"type":"String","value":"azdtest-l2ebf26"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-18T01:34:21Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-18T00:37:35.2640026Z","duration":"PT3M13.395129S","correlationId":"ae765b5ea6bdeeb9589a7ecc70ac1d72","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-l2ebf26","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l2ebf26"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrxvttwt2sqmqis.azurecr.io"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/providers/Microsoft.Authorization/roleAssignments/96612637-69f1-58b1-9947-02c4af78682c"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2804" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:37:57 GMT + - Thu, 09 Apr 2026 19:22:47 GMT Expires: - "-1" Pragma: @@ -547,20 +531,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 + - c4c3798f5563852ad2bca91fe5c3eaeb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 9f34f7be-810e-4dfc-b079-f224de1ae187 + - 7a2fd978-4236-4cb9-8a84-9afd6dc80e11 X-Ms-Routing-Request-Id: - - WESTUS:20260218T003758Z:9f34f7be-810e-4dfc-b079-f224de1ae187 + - EASTUS:20260409T192247Z:7a2fd978-4236-4cb9-8a84-9afd6dc80e11 X-Msedge-Ref: - - 'Ref A: A077D36B8E8F4E9EA4E1A2E2616A883C Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:37:57Z' + - 'Ref A: 8681B873EF4749BE958C1E2522DB0A0A Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:47Z' status: 200 OK code: 200 - duration: 463.473825ms + duration: 454.963417ms - id: 8 request: proto: HTTP/1.1 @@ -582,10 +566,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l2ebf26%27&api-version=2021-04-01 + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=assignedTo('6c37e0ec-712d-4900-a73f-bcfd17630788') method: GET response: proto: HTTP/2.0 @@ -593,18 +577,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 39026 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26","name":"rg-azdtest-l2ebf26","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","DeleteAfter":"2026-02-18T01:34:21Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-02-11T20:25:48.1490444Z","updatedOn":"2025-02-11T20:25:48.1490444Z","createdBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","updatedBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fc14d582-d744-4057-927e-b2ac56269010","type":"Microsoft.Authorization/roleAssignments","name":"fc14d582-d744-4057-927e-b2ac56269010"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-04-29T20:00:09.1204889Z","updatedOn":"2025-04-29T20:00:09.1204889Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fcf6514a-ec92-4579-b376-985ed789af99","type":"Microsoft.Authorization/roleAssignments","name":"fcf6514a-ec92-4579-b376-985ed789af99"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-05-12T20:59:23.1044444Z","updatedOn":"2025-05-12T20:59:23.1044444Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/e1b4ed65-90d5-4575-9fab-a15e8dd8bc67","type":"Microsoft.Authorization/roleAssignments","name":"e1b4ed65-90d5-4575-9fab-a15e8dd8bc67"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","condition":null,"conditionVersion":null,"createdOn":"2025-10-17T23:58:29.8971266Z","updatedOn":"2025-10-17T23:58:29.8971266Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385/providers/Microsoft.Authorization/roleAssignments/29bfa47e-c62a-42f2-b8eb-2bb43b0d0663","type":"Microsoft.Authorization/roleAssignments","name":"29bfa47e-c62a-42f2-b8eb-2bb43b0d0663"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/e79298df-d852-4c6d-84f9-5d13249d1e55","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025","condition":null,"conditionVersion":null,"createdOn":"2025-10-21T16:32:22.3532519Z","updatedOn":"2025-10-21T16:32:22.3532519Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025/providers/Microsoft.Authorization/roleAssignments/f009b370-f0d7-521f-8190-eaaa9291fcec","type":"Microsoft.Authorization/roleAssignments","name":"f009b370-f0d7-521f-8190-eaaa9291fcec"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","condition":null,"conditionVersion":null,"createdOn":"2026-01-16T22:29:38.5035324Z","updatedOn":"2026-01-16T22:29:38.5035324Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg/providers/Microsoft.Authorization/roleAssignments/b9a7d332-61f1-4436-a054-b0a07f45cba3","type":"Microsoft.Authorization/roleAssignments","name":"b9a7d332-61f1-4436-a054-b0a07f45cba3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:17:17.9080051Z","updatedOn":"2026-01-20T23:17:17.9080051Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.Authorization/roleAssignments/a6fcb9dd-5363-4ac1-ad09-52da2646918a","type":"Microsoft.Authorization/roleAssignments","name":"a6fcb9dd-5363-4ac1-ad09-52da2646918a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:22:41.7902463Z","updatedOn":"2026-01-20T23:22:41.7902463Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":"Granted by Microsoft Foundry vscode extension"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr/providers/Microsoft.Authorization/roleAssignments/4f9e750e-a959-4089-99a9-735d93d6ae69","type":"Microsoft.Authorization/roleAssignments","name":"4f9e750e-a959-4089-99a9-735d93d6ae69"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.7220122Z","updatedOn":"2026-01-22T18:42:31.7220913Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/7a576f9c-2657-5b4d-83ba-6d7b8564e2c3","type":"Microsoft.Authorization/roleAssignments","name":"7a576f9c-2657-5b4d-83ba-6d7b8564e2c3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.8056446Z","updatedOn":"2026-01-22T18:42:31.6002825Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9","type":"Microsoft.Authorization/roleAssignments","name":"d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:34:36.2184216Z","updatedOn":"2026-01-22T18:43:19.5451992Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog/providers/Microsoft.Authorization/roleAssignments/bf48cd73-5652-58b3-a891-31cd689a8e83","type":"Microsoft.Authorization/roleAssignments","name":"bf48cd73-5652-58b3-a891-31cd689a8e83"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.6412744Z","updatedOn":"2026-01-23T00:14:55.3413202Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/605b3e65-590a-52b0-9b57-7e2487bd436e","type":"Microsoft.Authorization/roleAssignments","name":"605b3e65-590a-52b0-9b57-7e2487bd436e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.7479302Z","updatedOn":"2026-01-23T00:14:55.3524082Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582","type":"Microsoft.Authorization/roleAssignments","name":"cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:10:15.5696850Z","updatedOn":"2026-01-23T00:15:36.5819142Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq/providers/Microsoft.Authorization/roleAssignments/64540a60-8bcc-52bc-b884-c13515038ba2","type":"Microsoft.Authorization/roleAssignments","name":"64540a60-8bcc-52bc-b884-c13515038ba2"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:55.0166898Z","updatedOn":"2026-01-23T20:54:28.1016796Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/fc8334ec-8bea-5e02-9b4f-43cff42c7bed","type":"Microsoft.Authorization/roleAssignments","name":"fc8334ec-8bea-5e02-9b4f-43cff42c7bed"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:54.9912109Z","updatedOn":"2026-01-23T20:54:28.0149087Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/b3341787-0a98-5dd5-a2e0-1756e8c57bde","type":"Microsoft.Authorization/roleAssignments","name":"b3341787-0a98-5dd5-a2e0-1756e8c57bde"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:55:21.3666642Z","updatedOn":"2026-01-23T20:55:21.3666642Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6/providers/Microsoft.Authorization/roleAssignments/4655cef5-9977-5346-a5d2-c27b33dc17c5","type":"Microsoft.Authorization/roleAssignments","name":"4655cef5-9977-5346-a5d2-c27b33dc17c5"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker","condition":null,"conditionVersion":null,"createdOn":"2026-01-27T00:12:51.6587791Z","updatedOn":"2026-01-27T00:12:51.6587791Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker/providers/Microsoft.Authorization/roleAssignments/13fdc017-b129-4d12-886e-97e8bca4c8e4","type":"Microsoft.Authorization/roleAssignments","name":"13fdc017-b129-4d12-886e-97e8bca4c8e4"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1146962Z","updatedOn":"2026-02-14T18:04:18.3583138Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/81290285-4b15-5d3f-b731-9e4f39716269","type":"Microsoft.Authorization/roleAssignments","name":"81290285-4b15-5d3f-b731-9e4f39716269"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1665151Z","updatedOn":"2026-02-14T18:04:18.4095322Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/94dd26ea-5dd1-5807-9af0-6f3b8810c40b","type":"Microsoft.Authorization/roleAssignments","name":"94dd26ea-5dd1-5807-9af0-6f3b8810c40b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:59:35.4573312Z","updatedOn":"2026-02-14T18:04:59.6101897Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi/providers/Microsoft.Authorization/roleAssignments/8290a893-c6ce-5d7f-8746-5b61055a672d","type":"Microsoft.Authorization/roleAssignments","name":"8290a893-c6ce-5d7f-8746-5b61055a672d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","condition":null,"conditionVersion":null,"createdOn":"2026-02-24T03:36:34.6591990Z","updatedOn":"2026-02-24T03:36:34.6591990Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts/providers/Microsoft.Authorization/roleAssignments/b9d7628f-5576-4018-9b5f-85fc24be672e","type":"Microsoft.Authorization/roleAssignments","name":"b9d7628f-5576-4018-9b5f-85fc24be672e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:31:40.1699479Z","updatedOn":"2026-02-25T01:31:40.1699479Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/b8b1f75a-96ba-5d7d-8205-4f794293e324","type":"Microsoft.Authorization/roleAssignments","name":"b8b1f75a-96ba-5d7d-8205-4f794293e324"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:32:07.3700484Z","updatedOn":"2026-02-25T01:32:07.3700484Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/73d453e9-cd90-55bc-a3f0-078c8f1b8e30","type":"Microsoft.Authorization/roleAssignments","name":"73d453e9-cd90-55bc-a3f0-078c8f1b8e30"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9707032Z","updatedOn":"2026-02-25T02:49:12.4889489Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/4cfa7055-b330-58ac-bea4-cf0e72abc5ff","type":"Microsoft.Authorization/roleAssignments","name":"4cfa7055-b330-58ac-bea4-cf0e72abc5ff"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9847168Z","updatedOn":"2026-02-25T02:49:12.4949681Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/101bfda6-41d9-58c6-9a16-6f25f4c4b131","type":"Microsoft.Authorization/roleAssignments","name":"101bfda6-41d9-58c6-9a16-6f25f4c4b131"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:01:58.9795499Z","updatedOn":"2026-02-25T02:01:58.9795499Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa/providers/Microsoft.Authorization/roleAssignments/a9fd7947-ba84-599e-838d-6cd22f42ef7a","type":"Microsoft.Authorization/roleAssignments","name":"a9fd7947-ba84-599e-838d-6cd22f42ef7a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.7648061Z","updatedOn":"2026-03-26T06:17:02.7648061Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/90857788-3534-5da8-abbd-fb99df7e632d","type":"Microsoft.Authorization/roleAssignments","name":"90857788-3534-5da8-abbd-fb99df7e632d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.9211819Z","updatedOn":"2026-03-26T06:17:02.9211819Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/a787ed5b-1f87-59c7-8497-fcc47882dc25","type":"Microsoft.Authorization/roleAssignments","name":"a787ed5b-1f87-59c7-8497-fcc47882dc25"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:18:03.4450814Z","updatedOn":"2026-03-26T06:18:03.4450814Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6/providers/Microsoft.Authorization/roleAssignments/1b32d9b6-8672-55e1-af60-2843979b5d11","type":"Microsoft.Authorization/roleAssignments","name":"1b32d9b6-8672-55e1-af60-2843979b5d11"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.7149469Z","updatedOn":"2026-03-30T21:14:24.1352264Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/daf6cddc-461e-5507-80ac-1b47d025defe","type":"Microsoft.Authorization/roleAssignments","name":"daf6cddc-461e-5507-80ac-1b47d025defe"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.6762167Z","updatedOn":"2026-03-30T21:14:24.0212102Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/bc1a2d3e-657b-58a6-bae0-9eae55ff066e","type":"Microsoft.Authorization/roleAssignments","name":"bc1a2d3e-657b-58a6-bae0-9eae55ff066e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:21:05.2722976Z","updatedOn":"2026-03-30T21:15:04.1182545Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb","type":"Microsoft.Authorization/roleAssignments","name":"e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s","condition":null,"conditionVersion":null,"createdOn":"2026-03-30T20:15:50.2225745Z","updatedOn":"2026-03-30T21:15:15.0669190Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s/providers/Microsoft.Authorization/roleAssignments/138eaa02-7015-5714-93f6-0b60642a6f76","type":"Microsoft.Authorization/roleAssignments","name":"138eaa02-7015-5714-93f6-0b60642a6f76"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:49:49.8204393Z","updatedOn":"2026-04-01T14:49:49.8204393Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/396fa00a-f149-4187-b64e-a4dba132425b","type":"Microsoft.Authorization/roleAssignments","name":"396fa00a-f149-4187-b64e-a4dba132425b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:50:53.6495590Z","updatedOn":"2026-04-01T14:50:53.6495590Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/b086de43-a12f-4221-9202-ae3a60639a80","type":"Microsoft.Authorization/roleAssignments","name":"b086de43-a12f-4221-9202-ae3a60639a80"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:51:49.4986139Z","updatedOn":"2026-04-01T14:51:49.4986139Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/37715462-b5e0-4018-b28e-64dc5e6c6f66","type":"Microsoft.Authorization/roleAssignments","name":"37715462-b5e0-4018-b28e-64dc5e6c6f66"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:53:45.2400140Z","updatedOn":"2026-04-01T14:53:45.2400140Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e0fa3920-df78-405a-b221-43d93dfa6e3f","type":"Microsoft.Authorization/roleAssignments","name":"e0fa3920-df78-405a-b221-43d93dfa6e3f"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:13:01.0359883Z","updatedOn":"2026-04-01T15:13:01.0359883Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/26250363-3add-4120-a6d1-6cdfae07365d","type":"Microsoft.Authorization/roleAssignments","name":"26250363-3add-4120-a6d1-6cdfae07365d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:14:22.4283237Z","updatedOn":"2026-04-01T15:14:22.4283237Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/48ccbbc9-bfdb-459b-b687-b612d9e042a4","type":"Microsoft.Authorization/roleAssignments","name":"48ccbbc9-bfdb-459b-b687-b612d9e042a4"}]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "39026" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:37:58 GMT + - Thu, 09 Apr 2026 19:22:49 GMT Expires: - "-1" Pragma: @@ -616,20 +600,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ae765b5ea6bdeeb9589a7ecc70ac1d72 + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/6172c335-07f2-4823-b92b-2c5ba1591f87 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 62f44378-84cb-44fe-8a8e-3acd93812682 + - 197b6849-deb3-4dd9-aa42-c1fef6348471 X-Ms-Routing-Request-Id: - - WESTUS:20260218T003758Z:62f44378-84cb-44fe-8a8e-3acd93812682 + - EASTUS2:20260409T192249Z:2425c1d5-e8b3-44bb-a368-2774d7cd650b X-Msedge-Ref: - - 'Ref A: E899CD1E41F044D995C90D596DC766F9 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:37:58Z' + - 'Ref A: 53D8FB6F07264514B1342C202DA7FA62 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:49Z' status: 200 OK code: 200 - duration: 128.267964ms + duration: 524.767833ms - id: 9 request: proto: HTTP/1.1 @@ -638,56 +624,220 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: aka.ms + host: management.azure.com remote_addr: "" request_uri: "" body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.5; linux) - url: https://aka.ms:443/azd/extensions/registry + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635?api-version=2022-04-01 method: GET response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 642 + uncompressed: false + body: '{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants full access to manage all resources, including the ability to assign roles in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:45.8978856Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "642" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:22:49 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/051c18d6-24c3-467b-9eec-e9d1411a695d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 59522dba-7406-48eb-8244-a751d8834df4 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192249Z:b9378b7d-c484-4a41-ae68-d8f279288161 + X-Msedge-Ref: + - 'Ref A: 765514F3EEB845128BD901C6DEC387C0 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:49Z' + status: 200 OK + code: 200 + duration: 115.389334ms + - id: 10 + request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 + content_length: 7662 transfer_encoding: [] trailer: {} - content_length: 0 + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d23239f","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":"3995333194191014458"}},"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":"2645599493491899061"}},"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.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''law-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"sku":{"name":"PerGB2018"}},"tags":"[variables(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"workloadProfiles":[{"workloadProfileType":"Consumption","name":"consumption"}],"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"tags":"[variables(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.App/containerApps","apiVersion":"2024-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","identity":{"type":"UserAssigned","userAssignedIdentities":{"[format(''{0}'', resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))))]":{}}},"properties":{"environmentId":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","configuration":{"activeRevisionsMode":"Single","ingress":{"external":true,"targetPort":8080,"transport":"http","allowInsecure":false},"registries":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]","identity":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}]},"template":{"containers":[{"image":"nginx","name":"app"}],"scale":{"minReplicas":1}}},"tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''app''))]","dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.App/containerApps'', format(''app-{0}'', variables(''resourceToken''))), ''2024-03-01'').configuration.ingress.fqdn)]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"}}}},"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]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"}}}},"tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "7662" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2721 uncompressed: false - body: "" + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"},"properties":{"templateHash":"3995333194191014458","parameters":{"environmentName":{"type":"String","value":"azdtest-d23239f"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:22:50Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:22:50.3461522Z","duration":"PT0S","correlationId":"c4c3798f5563852ad2bca91fe5c3eaeb","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d23239f"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/providers/Microsoft.Authorization/roleAssignments/9542945a-c127-55c4-be76-848f12751ae9"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg"}]}}' headers: Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive + - no-cache Content-Length: - - "0" + - "2721" + Content-Type: + - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:37:58 GMT + - Thu, 09 Apr 2026 19:22:50 GMT Expires: - - Wed, 18 Feb 2026 00:37:58 GMT - Location: - - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + - "-1" 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: 221.551457ms - - id: 10 + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 59219888-f716-48f6-9316-d481b586a7f0 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192250Z:59219888-f716-48f6-9316-d481b586a7f0 + X-Msedge-Ref: + - 'Ref A: 0B3F6BCCF335479D8E65C12F13962B5B Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:50Z' + status: 200 OK + code: 200 + duration: 914.515875ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 7662 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d23239f","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":"3995333194191014458"}},"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":"2645599493491899061"}},"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.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[variables(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''law-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"sku":{"name":"PerGB2018"}},"tags":"[variables(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-03-01","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"workloadProfiles":[{"workloadProfileType":"Consumption","name":"consumption"}],"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"tags":"[variables(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.App/containerApps","apiVersion":"2024-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","identity":{"type":"UserAssigned","userAssignedIdentities":{"[format(''{0}'', resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))))]":{}}},"properties":{"environmentId":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","configuration":{"activeRevisionsMode":"Single","ingress":{"external":true,"targetPort":8080,"transport":"http","allowInsecure":false},"registries":[{"server":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]","identity":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"}]},"template":{"containers":[{"image":"nginx","name":"app"}],"scale":{"minReplicas":1}}},"tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''app''))]","dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.App/containerApps'', format(''app-{0}'', variables(''resourceToken''))), ''2024-03-01'').configuration.ingress.fqdn)]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"}}}},"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]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"}}}},"tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "7662" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1411 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"},"properties":{"templateHash":"3995333194191014458","parameters":{"environmentName":{"type":"String","value":"azdtest-d23239f"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:22:51Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T19:22:51.2338487Z","duration":"PT0.0002878S","correlationId":"c4c3798f5563852ad2bca91fe5c3eaeb","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d23239f"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551/operationStatuses/08584258443142287697?api-version=2021-04-01&t=639113593717338969&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=DMH-UaU-a_ZzGgZi_KPdlzq9Tfu7_dngnF6LUYf70gFXJlKzCIIM8n4jGcR4pFr0y-IhEWkrBShEE1wRH3ZpggxLfD-6m3DVh6ZVg2DP1CAFLmN7B49tNBo7dMGx0iuU7HxHSNG2xP-MEWMOst3JZY6Ad0RoxCxOH70HD8cQRWdl73Xheiq0I4a8NRAKXA8LDR01T9R3Cy_OwqNtXakB0AWuhbAcq7pZaMwCUW7482_dy_wM5AhtfkduGPFvjBp9_oyQYHUc8z9udCaewA9mNR4OC3sU2JV8ns3hGtQFFKyLu9gmqPsZl6xpuKGNdpf3Ujpbizz2a87OLaGXfnqL4A&h=n21SxPx2heR_L1lmtE_2hYXo1YUET1ghEZZxr56r2_w + Cache-Control: + - no-cache + Content-Length: + - "1411" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:22:51 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 014279d6-5946-4dac-834f-55bad22577c4 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192251Z:014279d6-5946-4dac-834f-55bad22577c4 + X-Msedge-Ref: + - 'Ref A: 750CA39658884366B219D30553E11546 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:22:51Z' + status: 201 Created + code: 201 + duration: 803.224834ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -695,7 +845,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: raw.githubusercontent.com + host: management.azure.com remote_addr: "" request_uri: "" body: "" @@ -705,11 +855,11 @@ interactions: - gzip Authorization: - SANITIZED - Referer: - - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.5; linux) - url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551/operationStatuses/08584258443142287697?api-version=2021-04-01&t=639113593717338969&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=DMH-UaU-a_ZzGgZi_KPdlzq9Tfu7_dngnF6LUYf70gFXJlKzCIIM8n4jGcR4pFr0y-IhEWkrBShEE1wRH3ZpggxLfD-6m3DVh6ZVg2DP1CAFLmN7B49tNBo7dMGx0iuU7HxHSNG2xP-MEWMOst3JZY6Ad0RoxCxOH70HD8cQRWdl73Xheiq0I4a8NRAKXA8LDR01T9R3Cy_OwqNtXakB0AWuhbAcq7pZaMwCUW7482_dy_wM5AhtfkduGPFvjBp9_oyQYHUc8z9udCaewA9mNR4OC3sU2JV8ns3hGtQFFKyLu9gmqPsZl6xpuKGNdpf3Ujpbizz2a87OLaGXfnqL4A&h=n21SxPx2heR_L1lmtE_2hYXo1YUET1ghEZZxr56r2_w method: GET response: proto: HTTP/2.0 @@ -717,1656 +867,1719 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 123955 + content_length: 22 uncompressed: false - body: |- - { - "extensions": [ - { - "id": "microsoft.azd.demo", - "namespace": "demo", - "displayName": "Demo Extension", - "description": "This extension provides examples of the AZD extension framework.", - "versions": [ - { - "version": "0.1.0-beta.1", - "capabilities": [ - "custom-commands", - "lifecycle-events" - ], - "usage": "azd demo \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": { + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:21 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 24b3ce81-7c3e-4bae-983c-8a870d378877 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192522Z:24b3ce81-7c3e-4bae-983c-8a870d378877 + X-Msedge-Ref: + - 'Ref A: 702809A2400142A299F91384E8337C1F Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:22Z' + status: 200 OK + code: 200 + duration: 103.420083ms + - 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-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2804 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"},"properties":{"templateHash":"3995333194191014458","parameters":{"environmentName":{"type":"String","value":"azdtest-d23239f"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:22:51Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:25:15.8926326Z","duration":"PT2M24.6587839S","correlationId":"c4c3798f5563852ad2bca91fe5c3eaeb","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d23239f"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrw7djqs5ah3wpg.azurecr.io"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/providers/Microsoft.Authorization/roleAssignments/9542945a-c127-55c4-be76-848f12751ae9"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2804" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:22 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 964953a0-645c-4a52-a11a-44a736f6d693 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192522Z:964953a0-645c-4a52-a11a-44a736f6d693 + X-Msedge-Ref: + - 'Ref A: B3FFDDECAA474F1F8FFF5BAB6368C3E2 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:22Z' + status: 200 OK + code: 200 + duration: 149.48275ms + - 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-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d23239f%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","name":"rg-azdtest-d23239f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","DeleteAfter":"2026-04-09T20:22:51Z"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "325" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:22 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c4c3798f5563852ad2bca91fe5c3eaeb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 60bbaddf-36f7-4b3a-a7d8-3b22789049fe + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192523Z:60bbaddf-36f7-4b3a-a7d8-3b22789049fe + X-Msedge-Ref: + - 'Ref A: 552FE57C39E24CA28261B4320AE5CCF0 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:23Z' + status: 200 OK + code: 200 + duration: 153.370958ms + - id: 15 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" }, - "linux/arm64": { + "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" }, - "windows/amd64": { + "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" }, - "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" + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" }, - "windows/arm64": { + "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" }, - "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" + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" } - } + }, + "entryPoint": "app" }, { - "version": "0.3.0", + "version": "0.3.1", "capabilities": [ "custom-commands", "lifecycle-events", "mcp-server" ], - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "mcp", - "description": "Start MCP server with demo tools.", - "usage": "azd demo mcp start" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "2149dde360286e9010a6263d1c2e4b89424546bf771469aa72bb5918c2746795" + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "aea875c6dede186a751455cc08b127dc88c7309d228f9190b7bc404c7d073279" + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "5eb11742c212a1ea517fd4672ef8a4cc32fd54586caf2f442e640420e0e1bf5b" + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "32fc27795bf26d0d20dc6e67c4354b68ec0af5afce225a63307521fdea200c60" + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "c0ce8cb4049f5a4a30e815f9332352d1cc2d46e5cab437cb4aa257174f0e4f99" + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "9b4ae4aa10b2e35bbd4248c3fcf2f0ce1c81937248a8eccb79dc782411ea17b0" + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.4.0", + "version": "0.3.2", "capabilities": [ "custom-commands", "lifecycle-events", - "mcp-server", - "service-target-provider", - "framework-service-provider" + "mcp-server" ], - "providers": [ + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ { - "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" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d955061b14ca788a398f5e89e66f0a22f431d0660ff14c11264301856ea3e0db" + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "61b088773af2d2690f2429235894c749ec0db22dfc79cab93f5b768457805d3c" + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "d929b42b5e3eeff51e6b59775302a4625cd880b9a0fc6c30daae9eb964b41cd8" + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "d6b4eae71c96bf7b73e9669c918918b738659d426315880c265fd5cef2ebbb28" + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "dd52a10207ca1e401494257e0a435c1844a72fe052af1bbafec8cbaadc1302e2" + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4dc82efddac26fb79b011c2d22ffc05be49470f8170e56fdeee686f2266bb34d" + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.5.0", + "version": "0.3.3", "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" - } + "mcp-server" ], - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "mcp", - "description": "Start MCP server with demo tools.", - "usage": "azd demo mcp start" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "74b087ae3cf41541591b73ba2a8956c17b93424bb9337aced0d7dfeaaeea377a" + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "98be11366cda5f9d8ec3c4facc505ebbe51d86490285076a7d15a5651d1cb07e" + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "1adc16944a58854a760feb7aafa2edf9fc6bb0bf2db33c6a6ffd24765918ebc7" + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "9de313914549f6e7c6fc111df23a31d599eda468f0c0f2e9c5e8eebd859a4e92" + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "1ec350924e40f161db5bd181fbc9f6431230d0f124cc32889d4d4a68dda816ee" + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "752f5721129ed0dac25d2304b3a0394551a35514b84db3ffa2d5046f5e529982" + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-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", + "version": "0.3.7", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.5.0", + "version": "0.4.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.5.1", + "version": "0.5.0", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.6.0", + "version": "0.5.1", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "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" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "81d05b3f09a20c02f5ff95e6733a365aec26fde247018d1226a6bf7d1fad475e" + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "e224f538bc1c8882dfffe8b3719bdbb23e8a300c2b1b17213a7741eb95d260f2" + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "7032f59e5a35b1400a3e586786bdfb9e6c7a06c6be3528ee57fc7327cfcd41dc" + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "544dd88bbda18f80d24a2cde9bd48a5fb14d710ac30b830792f9cec6daf96115" + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "b4cfa9e6ec1d63f1486007455b67fa91c8930ada99df6dcd58d42d5f781190b1" + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.7.0", + "version": "0.5.2", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "70de5bed03991d9bc7905e8b60665fec423c9b81cb6e4527cab720f52c229560" + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "108c2661e36da5bebf5ab98ea0c0bbd2aa1cdd35703e321f22ea9b0d9cdcfa18" + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "d3524de84401cedecfe42ea8909ea0e4d5ff3363c36d8a6a89dfcf7a15580baa" + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "9f871c80875f591a188c8e8ad05bae01a9ceea3fdb6ee3c04abaaeb22868d9b3" + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "1a0c672841a9ed839c69655e467144bc3244169a00f2d70e2decdbe58e2d34fb" + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "38693fd9ecb02847195f2c23e3ea9c3aa12ab84192b64999cd0d3e0c299aeadb" + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.7.1", + "version": "0.5.5", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d301b37411b82d7d58a0ef40a41b8a941624f93e075697328f24e09177c8ce60" + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "289ef95281803ce270c59d7d204a1e0582ec7b90200cee6c351e1a124ab19f8b" + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "59d71e51c7a0c1776d4c43f2a98c7728440cfe76a392849bdb8f9da914018a04" + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "6d91fa6a478441a1ba8f852eb7aa333ef8c3f369be609e0bab56984c6da5db84" + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "20585d0509ef2bf6b6b1987344f1d386e3a3093f0c3faf52ab3870c30fc511ef" + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "ee33c49e08d37d367d0fca05ecc86236b6a4473e5283bdfb97c7d42b0c75bb09" + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.9.0", + "version": "0.5.6", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events", + "mcp-server" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd app \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": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d9872101b53a03ee97fdb294095f6eaf6de9a4fb7d97214b0bdce331f1720ce4" + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "037e59508b5405f79f5b9c3a70277c63b0646ab50bcf40f06a8220d265a8a312" + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "a517ce280ab5256df79233be6a464ad7bba16aa70b5bc0a61de6e40f47c812bc" + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "82c417090c5db778ecc8c99a90dd55af3a2cc4418c5aa6f30aa63c2bc8f1d747" + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "59ce6817fa902c38c7d3bb4b98ce4221209de42f95a894875008c64aea7ad300" + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "6bc9a2671bfb1176b7b1e522e96483ce030fb3f686f2c56f24c0e5b5c36729b3" + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-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", + "version": "0.5.7", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "71999ce6b4a67986c0166d0cd886aa447b6acd27115caa5d20d3dbc9e594bb01" + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "2372d84cd1c76d04d691f2c464d1166ee6f7082d6dc23ba94214ddee060754de" + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "665dc43d204f6afc8f50b4cc1e1cd05b777ce98b8c31a5d4b93c769b907d5edd" + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "34cbe6b5dc0f5713e5558ce180c9a14056ee3d07d0520179470e076d26c02fae" + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "54ec94a92595a9d347eca3fb4c8fa6f757acd9da0e7f0b51f3cd2521785dca4f" + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "a1c0eaf60677eaefaec854082ee0561286f74962c9cc2593e10b757252bb6e75" + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.5.1", + "version": "0.5.8", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "964de9002e4b08100714275e23167047fd5621c8fb0efed029b0ed3d1a96420a" + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "ad455dce44b4fcb059ef65f9ff24ec92524bd1eac7a916592650d1d046669502" + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "df33da60669e3080f59ee3d6cbd673bf0d88c2b21e14e09e77d7098ba128816a" + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "33fac7f5bcb4c98356df3eb1d4cdb7148c6771dc036d142ac8b7e1e29d19acd5" + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "ae16e0dad1e2a0cc1fbb72a29d88382f012b3afc49eb641d168d35bf348478b1" + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "25a45e2c22b864c6e68055a3648a73f9349de4f3a57fa7b716fb959a90b85e3c" + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.5.2", + "version": "0.5.10", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "8eacae357e2863775df67cbc5de9016767ccc5a557bf6c581a10d8b1a561ae68" + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "8f941c3605f4439a48ffe142d075af80918e3539f207b91fa9a5bd5ef6597167" + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "7e27d8d1a424027fdb8b5540a2aef9383fb09deff14339c15cf426a0c2330e1e" + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "8e4cd57e8da4226627f4d8fbb57985810257ff7e620fb4d09eeedb092d9752b3" + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "3caf51c197cce0ef20ecb82c40208938f2cacc757fd0b32d2dff74bdcd61f45e" + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "cefd5193d58840b02f4d66093a13be33b271622953c2a455fc153e6660ee9932" + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.6.0", + "version": "0.5.11", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7edcff645fb411fd322fd5e05c82288a810fbe2455669f98c5744cf2b7426ccd" + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "5a0850febf78b2c2d5cd5c834129f0c98e2f62b0482a3e876810d2798fc0878e" + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "d67bc4a7f1c092527f0be5ec8d99adc97f75c9e36cb1bc53afceafc271f260bd" + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "f509b72b62d204fae8de8af43c292790e14dfbf7f960dfe4c8a53e0dd60258e9" + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "d9de087dc438281bd471d4d2a50146a9d4a430d97f3d473f97b1d21f34a0b07f" + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "cbb2fb1b527367f21112831fed3eaa458971ad2fe706bb6a7adab830a38958f5" + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" } } - } - ] - }, - { - "id": "azure.ai.agents", - "namespace": "ai.agent", - "displayName": "Foundry agents (Preview)", - "description": "Extension for the Foundry Agent Service. (Preview)", - "versions": [ + }, { - "version": "0.0.6", + "version": "0.6.0", "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" - } + "mcp-server" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "592dbeca411725b0ee7708a54469dfa05c88451793514731ce083d5a1c20bec5" + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "dd76870363590f07fdf3573d108bf6ec8305e1c34eee3169a5878e056505cd96" + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "3687c1402cfa9fb9e4c9c704b033d977b317bdc1566f8588713fe91894062727" + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "39dc586c923ddaf12e7a2369263670c39130be8754089feaef492e6048c849a2" + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "f2dcfed5bcb816d84ac2de15c574cc2e8ba14a2611a4627b0a8725682fa041b6" + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "88bbf844c8126d205764fdace0f0602fd0b2ca5d74ab815fcf6052b371338b9f" + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.7", + "version": "0.6.1", "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." - } + "mcp-server" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "529bf037aa00b425993d2b60a69e166f06901ff55c27c81792aae1b157c9219e" + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "e1faceba27c3d299edbaa98ab76e44d37862c7e503f32b73f60b1c81c9f27cea" + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "51cedd928156febc984e5f01be4d8c571c0e4348bda88bfa7883fd08ba2d91a2" + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "2587c7d6fbb713fd50f5d954e50c39f6b97868f8a74d0124edea6cacf5ad061b" + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "a973a38f06b17815fc2bf447f8efbe9bad29025caefc90b3ecdbeb64a86e206e" + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "b2f00ec525e292d3ea6cb2b46c93051ddb9ca9816a900643c0c5a0b6ae823c21" + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.0-preview", + "version": "0.7.0", "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." - } + "mcp-server" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "056559c98e57616f03b79b529e8b4bbd194d5f41709a2c390d7226acb5975eb0" + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "74590ec13f42df6a83d7b87286c56a13d5c0136266e7b133bd3501f0cfc834e2" + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "5bf7f7add058e7188b85cd1ec0c64b9e701ab41b09f1fefd1bc9968f988ae5c0" + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "658d29f454c8fd0d0125bcc3a29ad9d4c60c3c1f463c2f424d90484eb681a366" + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "e3f6b41d2188eaa1b675ddb80af56baac8b5d90431baacf15113ea5a472fa6f2" + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "33f17854250565ccf9c190a8106b12be2995e5f4da33d799a285985158f13d5d" + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.1-preview", + "version": "0.8.0", "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." - } + "mcp-server" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "ba7bb03a49d72fc7a7e7c407a1dcd929b5e471f7c3a39b1d2d12c077f46a6939" + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "41bf5fb808ed9e9f35e593afb6b730da045a67856caee37df75c4d36b17e6de7" + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "543e77c4196f75dbe10de53083e2de0f09845d9e1b862f745bafed607e49b80d" + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "b6624b2946dbae69638e40305ba3b576539413e3a8c2cbb2f6ca5d6d0ae5a7f2" + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "4f96fca89b236c435acb44b72758b154d9bde3a51d7de8a600cc8006c540a3b4" + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "a3228008738c50113dbe745ea2676107e35d829e444c0ef8af5ca60bae44d074" + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.2-preview", + "version": "0.8.1", "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" - } + "mcp-server" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "12293a86ee951d99bc0903e0436573f5da853eeb0f21d894f0fb5c5de670cfdb" + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "81449a1df145676cb20a002a3496177c823873deae31d4ca51edd9ff691d08b6" + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "790de2fa0cd241e2daeb487483cbe5c9b1d2f5bb4a904daa753b5a03ac20b632" + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "d7943130b400a89eac4f1622d34fd1fff10821a14507ea8a0f3a37aaf15697e2" + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "20352ae5d05604ad4ebac5c42b9d4f049afc5f921759a4534967ba672c78448e" + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "06e7865cfed0f7e4b4dad9bde06f4763210b9afb67012676455b50b0c9629432" + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.3-preview", + "version": "0.9.0", "capabilities": [ "custom-commands", "lifecycle-events", - "mcp-server", - "service-target-provider" + "mcp-server" ], - "providers": [ + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ { - "name": "azure.ai.agent", - "type": "service-target", - "description": "Deploys agents to the Foundry Agent Service" - } - ], - "usage": "azd ai agent \u003ccommand\u003e [options]", - "examples": [ + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "2b5a065bf221bf1df09c1db384daaecf1855156e6f0690fb3671bef4c026104c" + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "b6df8f0aada9f1f942ca144301f915ab6a47dc5b0c9588a6f2eb5fa5df088e20" + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "ae1e4b6a9db29b878bdedbecb3fef542e10c166d8096ac4d8db10acb225f2821" + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "e0b530151be2e212eae528fa05e9c18002d08f6aabec0ba599c3773e5ae0e808" + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "88521aacfa86ef7c2291760c713a7c1ec4ad215aad3880949ed9c75cfaf3c97e" + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "1faa940eb4bbe184a638d39ee9edfba645f0294b256c955a6b296874d41a04c6" + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.4-preview", + "version": "0.10.0", "capabilities": [ "custom-commands", "lifecycle-events", @@ -2375,72 +2588,82 @@ interactions: ], "providers": [ { - "name": "azure.ai.agent", + "name": "local", "type": "service-target", - "description": "Deploys agents to the Foundry Agent Service" + "description": "Local-only container services for development (skipped during deploy)" } ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7e6254a22f58c428c433fc763668eba1117d071f48e246201f1e558c376efefe" + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "4b851f18e2a6da956fbc0ff963d07cea6a82010c89204abe3a5ce06eee15ff07" + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "bf780cd9490a8dbc5ef834193e4108bc406b7a9342c944fb076d8aecbf8c7dec" + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "cdb9674d53eee5517fcfc4514cc1cc0ec8116ec8699950afedf4203d1687c65b" + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "fb44e21b0211f3ec0200ca4ae9dd972b49f112e190547d09527d92c9d6756ae6" + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "ed513d182eaee078def74fe23f3f2fa3a04acf90a59f22165cd5628b077db8ab" + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.5-preview", + "version": "0.10.1", "capabilities": [ "custom-commands", "lifecycle-events", @@ -2449,1245 +2672,8751 @@ interactions: ], "providers": [ { - "name": "azure.ai.agent", + "name": "local", "type": "service-target", - "description": "Deploys agents to the Foundry Agent Service" + "description": "Local-only container services for development (skipped during deploy)" } ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "42bbc048f0c3b9bae4f6ade74a3ffff60c65d5ae44b96673234b6cdf135ad34a" + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "141cd0cf795ed292c8349bb7959404abafc65c38dc30e4f50d6eb9b619787dc8" + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "bcd08ff98d33cef16cef1e70317def7ec48bc005a9776680d169ee686e650a45" + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "6136a93aed132cd8e96d5332278a6d79dcad2f5aa10ae86f4a8c5d274017e816" + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "c1105cee5a3e11fab42ff6aa8722c48506c293e97e484c47b9a1d67aad45e653" + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "35a5cf98d074bfb7f1a4536b89b4913a6fde1057a8c4a46f35e51d0c6a6412bd" + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.6-preview", + "version": "0.11.0", "capabilities": [ "custom-commands", "lifecycle-events", "mcp-server", - "service-target-provider", - "metadata" + "service-target-provider" ], "providers": [ { - "name": "azure.ai.agent", + "name": "local", "type": "service-target", - "description": "Deploys agents to the Foundry Agent Service" + "description": "Local-only container services for development (skipped during deploy)" } ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d7c4e93bd2970072501d249f3f9cd06132b5095638f8bb618a560776c2d1502a" + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "e1d5d49a748aa848074d304dabf5a24f6f0f24ff9d56128a2cdb7c3fe917fee2" + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "81b04da0ea9002de1e12783be3de80d9d08cd85eefb90ddf12eb07ab1bebdd07" + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "5af0f6a8e4a384a4e4d6fdf32824c3b659ffb3032c65854d2a09cc74aad4e6cf" + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b11ed749d1abc0d9e10d4652d78017542d2a505028de1c41a385a0cbcb9790a9" + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "f2e07ab85442b30521ddf22b9d712e45a584e949a9e68edcc39a62ad0db03f68" + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.8-preview", + "version": "0.11.1", "capabilities": [ "custom-commands", "lifecycle-events", "mcp-server", - "service-target-provider", - "metadata" + "service-target-provider" ], "providers": [ { - "name": "azure.ai.agent", + "name": "local", "type": "service-target", - "description": "Deploys agents to the Foundry Agent Service" + "description": "Local-only container services for development (skipped during deploy)" } ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "4d1dc48a79c4b556e1f0d0659c1d6cf62ea871398685a556c3420144bfd59bcc" + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "6eaa2f273333a1d097afcac3e9d66272f36e14175262ee14095c184477bf87f7" + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "32d8057b43e59a7e730ac4a05102843c1435beb57a893f894b89203d0673bec4" + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "d71239ef290d9e8ac6a37b57b3789f93de5f780320835944740db2dd86ae71c4" + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cafa0ef09e5e9753f2f4dac6146a7e2eeac9c351f0cea8f75780161412a6b44" + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "e16b920ba65394d664792f09378e882e365b37b5e10bb908ae57774ec7e59022" + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.9-preview", + "version": "0.11.2", "capabilities": [ "custom-commands", "lifecycle-events", "mcp-server", - "service-target-provider", - "metadata" + "service-target-provider" ], "providers": [ { - "name": "azure.ai.agent", + "name": "local", "type": "service-target", - "description": "Deploys agents to the Foundry Agent Service" + "description": "Local-only container services for development (skipped during deploy)" } ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "c31376d787c451ab3262310649a55e5419abba98a24201f70378ce16ef670361" + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "437e35394a96169c2525b06a5792e4cc660cbbb361e480ca499b3ea86a31df6d" + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "82852e4523a8a961e308259dba23800715802270eebd5cd92af0228485f816fc" + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "2719ce8b649d21cb5186908d974e79f1852543bdd2412a4b6ec1ee6a2fb0e4ef" + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "9c74fcb69b734954c05292f7be9ee2afe6feb4536898f35244e3dd3365db5188" + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "608b08e206d53749313d6b2b30ab20c2b3288ca088c8ddbaad367802460b2e5c" + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" } } - } - ] - }, - { - "id": "microsoft.azd.concurx", - "namespace": "concurx", - "displayName": "Concurx", - "description": "Concurrent execution for azd deployment", - "versions": [ + }, { - "version": "0.0.1", + "version": "0.11.3", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } ], - "usage": "azd concurx \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "91aee92ffa7fa3942d7935421090d3d9a3e11ef349bd055ecc192f797e3c7550" + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "8c57a10fa99f708d8d2239dbf2d9da054779d8d4d1722fe7594604163e9fc5ce" + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "49610ff4ce2c68fed22f8b5104df210a2fb193e5602fd257278b89b692d9a6d6" + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "ed0f6d1b7de9f1f377db8a61e02d4a1e77e14f1bd85ee56cd2102003a1826e93" + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "048d8951105fb1620b4de27c66dd825d27eb43403bab6a3bff8f9824035a7adb" + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "858ebcaff372a78d85f3a192b67173d3843bec34d68cfc67e79e81417908f74e" + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.2", + "version": "0.11.4", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } ], - "usage": "azd concurx \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "cbd6ab2b8406654bf8b715ef4471085027f2e94fd820dd8678541a39348467d9" + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "0381abfffe4a1586a9c57f023819c8655c0aacf518b5da7fef5b1907b0efe1a9" + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "fb00169ae47b919d874bb34518cea2a38c55124084b9c841da8e1e498e925048" + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "74e5673ac35945c9255bf8d62d9da3356dc89ad0a7034413238984b7ada4ff14" + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "d2b7931be0763304a822b92dc540df8b93a66beaaad706884ce349cd66235b09" + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "315ef7fa448361d2963902296786d649ba394f233cad7769878ca1b7b9f3e76a" + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.1.0", + "version": "0.11.5", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } ], - "usage": "azd concurx \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "9e07a877dbc98e918a85e0da30d2dd6edf53203dccae613c44fa9ee5dd071720" + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "75635e244a56a8822ce523fbfb8d448b1ff6c18cbd00f7679535e7bc08c43435" + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "35180086ea5b5c0b6fda8490a84dac3f4ab1d81afbf7ee326ee81dc46d28212c" + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "9d12aafa43c6dc5cfd2343a11b0a5cdfa4cc35ae3cf2fc65103b09a3711592f2" + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "1d1d49b72a50c15628e3960730be00b4aa70b0a33ce29ecbf586bf7236b617a6" + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "3ca2b2ec04eac82bcad707030b0763cdd4c8a7b19701bf359b87861e47055f0c" + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-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", + "version": "0.11.6", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "f0df54c64465c910e801ee362b9140aaaa5a2c04deb860e9b0c9b73b16ee2e99" + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "a928c0fb26cef21e66da3471245927b07f1e652ad7f3779bfbb339f54fb1b17f" + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "49e97d289db8fddd0d7e7a19de5056125b48b337d8765422d1a0cf9999176ed8" + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "8f466e84d5b46c3d746a2b44ac823363045bd9cb37a352852bf7cacc8df9f8ba" + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "3559dba2bf318c606f0045e924ecafd2c9874b4111dc4cc99606d0f0df198e5f" + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "d14f81b9dec2dfa6dabdb829ec958cae495005248722a4a5d038ac11236eae57" + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.9-preview", + "version": "0.11.7", "capabilities": [ - "custom-commands" + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "90b18b9e15429b7fe10d6eb0dbe9e882cf95a06e9be3a127657653a4ff6755b3" + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "7be2843e419c2e7d16f849110c2b659fa5230135a2f52ccd151fbd7e3f3aeb64" + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "1fbedf42d4bd61f68d62df58f21b62a9a4d500870da0ac90ac55d4c6eb02f11c" + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "d76e9c78bbf453d00f39404ebe5786f351e3394b1ab33e710d2d7f261d61c9bd" + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "ae99e9336650abcb39fe41621380986cda125dae266d5b976306df182f2c0ef7" + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "e9ccf8b5a0bde6d4e2fe30a96736c5187bd85ebe4d1f1d9c7aff921a830152f0" + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.10-preview", + "version": "0.12.3", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events", + "mcp-server", + "service-target-provider" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "10bc56cf745a0df21ab337db0a2aebd5a55c65458afa81ed664cd002f83a032b" + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "06ba9167f7b1c03675e6e48912bb648b88051ea756e133eda01303e20f0e07ef" + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "3edbe0e557e4d7ea7f5eec86ce75e70d92c23c78118ec5bdfd54e73587e6ec57" + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "da44f050daf9ad24249590ac03cd77439c326d8a62eac90a999fe6d891f2b115" + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "549f38ab95351ce6f1087f697fb5e091554bbb91e91bcb6ef062c0fd7d35b038" + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "8b66caed2ef381a682206385f475af1be7d73084500d089455d7408e2e442987" + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.11-preview", + "version": "0.12.4", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events", + "mcp-server", + "service-target-provider" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "46750b2bc3cc1cf956dd8a4f485b6405a09f96fe9139a626b9524aef7d5f9fbd" + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "17886e9bed1183cc34eee5b572978de6f9a5c9475c909c59ca3ede3b8235fe3a" + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "a86ffe0ad0e40aac95dc14bb681df34f85d1d89f4eb7f2bf16de94b64c66e65b" + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "bd4c04e5080a3ebb3dcbff7930ef4dd4ef10e5a6078c8e023059111c6a4d0392" + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b201586d99138ec8439f14e72fb30bac320b36e8c9c1c16e28e7f3c5c655bb1d" + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "1048b8b996101f350538d2a9990adfa967076d19fc8417bc77bbc90a53cc6da6" + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.12-preview", + "version": "0.12.5", "capabilities": [ "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", "metadata" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "ff7f95ae6d5c76bccf2bf8163cd6567623c4ed146c7f407861d659f731735fce" + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "f76f01ac2589a3a093d15b0764cfa76fdc31a07f1f4b275f02747597ebcb4bd5" + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "f896747ec311826af1f00acaf5817ec66ca4d80f6b50b93ceaf6c335f172cc99" + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "1b6010d393fd8ccc737d76f2f39d16001ded8fd162850af1b04179b1d56283a4" + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "e2ad79ef1095ec218dda38f01360572e36ebaba98da415e2d18fa42cd9681a7b" + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "52d6cfc59a3c5490bf675704b7f3b1693f463ee8474366b91c35f154b0c32df8" + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.14-preview", + "version": "0.12.6", "capabilities": [ "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", "metadata" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", - "examples": [ + "providers": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "1a65073f9033cf3d49ac3c923c2d4d9db4ec3cb21f7a8c49c65c455db982eeb0" + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "0ea4ef79e506e99ae62904856738d558a414e0c46172011d16b197641191b288" + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "9e058d1e6be9b466042fc60de1e2304446078ea3757db9fcb99db9f3b495da3c" + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "02eb90b366585a974cccafed6436a0a3f973fe47bd7fd1b9233c8d59da652977" + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "4a649358724ae6f06d75da91b8393afb6d66390d5e6f9be3a6b228b8b640fc7b" + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4bcf1b36b245b60557108e897e6dc08e8df014517da6971f014bc81c6e01c8e2" + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" } } }, { - "version": "0.0.16-preview", + "version": "0.12.7", "capabilities": [ "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", "metadata" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "5f00ab549630eaa4b329a2a1487ce5d05a1dc4b5db8de39bf10894a0ae18a32b" + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" }, - "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" + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "0c68b7625052a4352adc0686dd7feb5754d1fa8f9b09a3eb65c9ce29cf04fe6b" + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" }, - "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" + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "286176e9fa3af919950e302971f88bbed737a4a6ac6306f05e998380de78a2d7" + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" }, - "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" + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "28896339658f6d0f686faa3739873425d0ceb9b504fc1bc31453a42691d4c95a" + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" }, - "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" + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "a55fabe4683ec60eabb571985e5a1004792971d72392cf03c75d7ca0ce404040" + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" }, - "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" + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "f65f11d6b772de036353d4b24ffb2235b83e938775f5256b072406cc9b56cafc" + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" }, - "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" + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" } } - } - ] - } - ] - } - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - max-age=300 - Content-Length: - - "123955" - Content-Security-Policy: - - default-src 'none'; style-src 'unsafe-inline'; sandbox - Content-Type: - - text/plain; charset=utf-8 - Cross-Origin-Resource-Policy: - - cross-origin - Date: - - Wed, 18 Feb 2026 00:37:58 GMT - Etag: - - W/"37c325649d7b6d713326ebe2cc5cb913723860f8eda978fe359375f4febe1e02" - Expires: - - Wed, 18 Feb 2026 00:42:58 GMT - Source-Age: - - "175" - 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: - - ad77aaead4f1c4bf94f3b00be3ad32d7f1901726 - X-Frame-Options: - - deny - X-Github-Request-Id: - - D04E:14E6A2:5AD30:76505:6994746B - X-Served-By: - - cache-bfi-krnt7300028-BFI - X-Timer: - - S1771375079.945058,VS0,VE2 - X-Xss-Protection: - - 1; mode=block - status: 200 OK - code: 200 - duration: 36.653961ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) - X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l2ebf26%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26","name":"rg-azdtest-l2ebf26","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","DeleteAfter":"2026-02-18T01:34:21Z"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "325" - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 18 Feb 2026 00:37:58 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" - X-Ms-Request-Id: - - b3a5c7a4-063a-44ba-b215-06f0340a6104 - X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003759Z:b3a5c7a4-063a-44ba-b215-06f0340a6104 - X-Msedge-Ref: - - 'Ref A: CB4BE41CFD8E4454A873851B79F2FEEA Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:37:59Z' - status: 200 OK - code: 200 - duration: 88.612562ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) - X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27app%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 670 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis","name":"app-xvttwt2sqmqis","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793","clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347"}}},"tags":{"azd-env-name":"azdtest-l2ebf26","azd-service-name":"app"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "670" - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 18 Feb 2026 00:37:59 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" - X-Ms-Request-Id: - - 74381bec-505e-41f3-b06c-88986513243f - X-Ms-Routing-Request-Id: - - WESTUS:20260218T003800Z:74381bec-505e-41f3-b06c-88986513243f - X-Msedge-Ref: - - 'Ref A: 17B0141723EA4435819027808A4A9C05 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:37:59Z' - status: 200 OK - code: 200 - duration: 840.770267ms - - 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-armcontainerregistry/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) - X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.ContainerRegistry/registries?api-version=2023-07-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 30227 - uncompressed: false - body: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/jeffreychen/providers/Microsoft.ContainerRegistry/registries/jcregist","name":"jcregist","location":"eastus","tags":{},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2025-08-14T00:00:38.2076377+00:00","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-14T00:02:06.856037+00:00"},"properties":{"loginServer":"jcregist-d4dafvhpevapbeaz.azurecr.io","creationDate":"2025-08-14T00:00:38.2076377Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-08-14T00:00:45.0740311+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-lab-dev-7llomv/providers/Microsoft.ContainerRegistry/registries/acracrqlcqxd","name":"acracrqlcqxd","location":"eastus","tags":{"azd-service-name":"acr"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2025-08-07T23:39:09.1397609+00:00","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-07T23:39:09.1397609+00:00"},"properties":{"loginServer":"acracrqlcqxd.azurecr.io","creationDate":"2025-08-07T23:39:09.1397609Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-08-07T23:39:20.9699123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/srnagar-rg-1/providers/Microsoft.ContainerRegistry/registries/srnagarazmcp1acrdev","name":"srnagarazmcp1acrdev","location":"eastus","tags":{},"systemData":{"createdBy":"srnagar@microsoft.com","createdByType":"User","createdAt":"2025-11-20T09:13:01.1719909+00:00","lastModifiedBy":"srnagar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T09:15:56.7901592+00:00"},"properties":{"loginServer":"srnagarazmcp1acrdev.azurecr.io","creationDate":"2025-11-20T09:13:01.1719909Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-11-20T09:15:56.8568932+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-ripark-these-are-a-few-of-my-favorite-things/providers/Microsoft.ContainerRegistry/registries/riparkacrtme","name":"riparkacrtme","location":"eastus","tags":{},"systemData":{"createdBy":"ripark@microsoft.com","createdByType":"User","createdAt":"2025-03-06T22:36:43.7784805+00:00","lastModifiedBy":"ripark@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-06T22:36:43.7784805+00:00"},"properties":{"loginServer":"riparkacrtme.azurecr.io","creationDate":"2025-03-06T22:36:43.7784805Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-03-06T22:36:50.6306583+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-stress-cluster-storage/providers/Microsoft.ContainerRegistry/registries/stressstoragelkxxtjuf245tm","name":"stressstoragelkxxtjuf245tm","location":"southcentralus","tags":{"displayName":"Stress Test Container Registry"},"systemData":{"createdBy":"bebroder@microsoft.com","createdByType":"User","createdAt":"2025-12-04T21:07:20.9242154+00:00","lastModifiedBy":"bebroder@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-04T21:14:54.4951169+00:00"},"properties":{"loginServer":"stressstoragelkxxtjuf245tm.azurecr.io","creationDate":"2025-12-04T21:07:20.9242154Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-12-04T21:14:54.6086217+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/srnagar-uae-rg/providers/Microsoft.ContainerRegistry/registries/azuremcppostgresserveracra57shgfuze3ag","name":"azuremcppostgresserveracra57shgfuze3ag","location":"uaenorth","tags":{},"systemData":{"createdBy":"srnagar@microsoft.com","createdByType":"User","createdAt":"2025-11-05T21:23:35.0334002+00:00","lastModifiedBy":"srnagar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-05T21:23:35.0334002+00:00"},"properties":{"loginServer":"azuremcppostgresserveracra57shgfuze3ag.azurecr.io","creationDate":"2025-11-05T21:23:35.0334002Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-11-05T21:23:44.0072487+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/anuchan-to-del/providers/Microsoft.ContainerRegistry/registries/acrazuremcpremoteserverluotrlpmuz3mm","name":"acrazuremcpremoteserverluotrlpmuz3mm","location":"eastus2","tags":{},"systemData":{"createdBy":"anuchan@microsoft.com","createdByType":"User","createdAt":"2025-12-18T02:56:16.7312634+00:00","lastModifiedBy":"anuchan@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-18T02:56:16.7312634+00:00"},"properties":{"loginServer":"acrazuremcpremoteserverluotrlpmuz3mm.azurecr.io","creationDate":"2025-12-18T02:56:16.7312634Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-12-18T02:56:25.7750415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis","name":"acrxvttwt2sqmqis","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:34:30.3976178+00:00","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:34:30.3976178+00:00"},"properties":{"loginServer":"acrxvttwt2sqmqis.azurecr.io","creationDate":"2026-02-18T00:34:30.3976178Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-18T00:34:37.044842+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-ld39cca/providers/Microsoft.ContainerRegistry/registries/acrsq2dblstfui5s","name":"acrsq2dblstfui5s","location":"eastus2","tags":{"azd-env-name":"azdtest-ld39cca"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:21:13.512665+00:00","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:21:13.512665+00:00"},"properties":{"loginServer":"acrsq2dblstfui5s.azurecr.io","creationDate":"2026-02-18T00:21:13.512665Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-18T00:21:25.3977098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-vivazqu-todo-node-aca/providers/Microsoft.ContainerRegistry/registries/crvkhg4mabnzm4m","name":"crvkhg4mabnzm4m","location":"eastus2","tags":{"azd-env-name":"vivazqu-todo-node-aca"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2026-01-24T01:05:23.2180614+00:00","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-24T01:05:23.2180614+00:00"},"properties":{"loginServer":"crvkhg4mabnzm4m.azurecr.io","creationDate":"2026-01-24T01:05:23.2180614Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-01-24T01:05:34.9687045+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-aca-021326-03/providers/Microsoft.ContainerRegistry/registries/crwabrezaca02132603n7fwa6","name":"crwabrezaca02132603n7fwa6","location":"eastus2","tags":{"azd-env-name":"wabrez-aca-021326-03"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2026-02-13T20:15:04.3256428+00:00","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-13T20:15:04.3256428+00:00"},"properties":{"loginServer":"crwabrezaca02132603n7fwa6.azurecr.io","creationDate":"2026-02-13T20:15:04.3256428Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-13T20:15:10.593567+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-aca-021326-04/providers/Microsoft.ContainerRegistry/registries/acrwabrezaca02132604bf7knq","name":"acrwabrezaca02132604bf7knq","location":"eastus2","tags":{"azd-env-name":"wabrez-aca-021326-04"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2026-02-13T20:33:14.3901117+00:00","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-13T20:33:14.3901117+00:00"},"properties":{"loginServer":"acrwabrezaca02132604bf7knq.azurecr.io","creationDate":"2026-02-13T20:33:14.3901117Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-13T20:33:16.7168875+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-aca-021326/providers/Microsoft.ContainerRegistry/registries/acrwabrezaca021326h7mo5g","name":"acrwabrezaca021326h7mo5g","location":"eastus2","tags":{"azd-env-name":"wabrez-aca-021326"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2026-02-13T19:06:27.3967075+00:00","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-13T19:09:06.1779548+00:00"},"properties":{"loginServer":"acrwabrezaca021326h7mo5g.azurecr.io","creationDate":"2026-02-13T19:06:27.3967075Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-13T19:09:06.223814+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-wabrez-dadjokes-021025/providers/Microsoft.ContainerRegistry/registries/crwabrezdadjokes021025gcjept","name":"crwabrezdadjokes021025gcjept","location":"eastus2","tags":{"azd-env-name":"wabrez-dadjokes-021025"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2026-02-10T23:56:59.6171979+00:00","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-11T19:58:06.6637868+00:00"},"properties":{"loginServer":"crwabrezdadjokes021025gcjept.azurecr.io","creationDate":"2026-02-10T23:56:59.6171979Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-11T19:58:06.893863+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/srnagar-eus-rg/providers/Microsoft.ContainerRegistry/registries/azuremcppostgresserveracr4y5qrubsle2qi","name":"azuremcppostgresserveracr4y5qrubsle2qi","location":"eastus2","tags":{},"systemData":{"createdBy":"srnagar@microsoft.com","createdByType":"User","createdAt":"2025-11-05T20:13:49.8801861+00:00","lastModifiedBy":"srnagar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-05T20:31:01.6508219+00:00"},"properties":{"loginServer":"azuremcppostgresserveracr4y5qrubsle2qi.azurecr.io","creationDate":"2025-11-05T20:13:49.8801861Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-11-05T20:31:01.8674909+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd203/providers/Microsoft.ContainerRegistry/registries/azuremcppostgresserver1101aacrtbzagbfgmolca","name":"azuremcppostgresserver1101aacrtbzagbfgmolca","location":"eastus2","tags":{},"systemData":{"createdBy":"anuchan@microsoft.com","createdByType":"User","createdAt":"2025-11-01T19:33:17.7910934+00:00","lastModifiedBy":"anuchan@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-01T19:33:17.7910934+00:00"},"properties":{"loginServer":"azuremcppostgresserver1101aacrtbzagbfgmolca.azurecr.io","creationDate":"2025-11-01T19:33:17.7910934Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-11-01T19:33:29.8656812+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd223/providers/Microsoft.ContainerRegistry/registries/acrazuremcpremoteserverqhigxspwv2axi","name":"acrazuremcpremoteserverqhigxspwv2axi","location":"eastus2","tags":{},"systemData":{"createdBy":"anuchan@microsoft.com","createdByType":"User","createdAt":"2025-11-20T08:23:44.5871962+00:00","lastModifiedBy":"anuchan@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T08:58:20.6846432+00:00"},"properties":{"loginServer":"acrazuremcpremoteserverqhigxspwv2axi.azurecr.io","creationDate":"2025-11-20T08:23:44.5871962Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-11-20T08:58:20.7376071+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd223/providers/Microsoft.ContainerRegistry/registries/acrazuremcprmserverqhigxspwv2axi","name":"acrazuremcprmserverqhigxspwv2axi","location":"eastus2","tags":{},"systemData":{"createdBy":"anuchan@microsoft.com","createdByType":"User","createdAt":"2025-11-20T03:08:02.1117634+00:00","lastModifiedBy":"anuchan@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T05:01:40.9597412+00:00"},"properties":{"loginServer":"acrazuremcprmserverqhigxspwv2axi.azurecr.io","creationDate":"2025-11-20T03:08:02.1117634Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-11-20T05:01:41.1812954+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_anuchan-mcp15ccd226/providers/Microsoft.ContainerRegistry/registries/acrazuremcpremoteserver5gcil62wrofto","name":"acrazuremcpremoteserver5gcil62wrofto","location":"eastus2","tags":{},"systemData":{"createdBy":"anuchan@microsoft.com","createdByType":"User","createdAt":"2025-11-26T21:37:12.1630882+00:00","lastModifiedBy":"anuchan@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-26T21:50:59.5605084+00:00"},"properties":{"loginServer":"acrazuremcpremoteserver5gcil62wrofto.azurecr.io","creationDate":"2025-11-26T21:37:12.1630882Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-11-26T21:50:59.7982167+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/jeffreychen/providers/Microsoft.ContainerRegistry/registries/jcacrncus","name":"jcacrncus","location":"northcentralus","tags":{},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-17T22:34:21.0021912+00:00","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-17T22:34:21.0021912+00:00"},"properties":{"loginServer":"jcacrncus.azurecr.io","creationDate":"2026-02-17T22:34:21.0021912Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-17T22:34:37.9163209+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-dev-mrp5f6/providers/Microsoft.ContainerRegistry/registries/acrmrp5f6","name":"acrmrp5f6","location":"northcentralus","tags":{},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-01-30T01:22:57.4996977+00:00","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-30T01:22:57.4996977+00:00"},"properties":{"loginServer":"acrmrp5f6.azurecr.io","creationDate":"2026-01-30T01:22:57.4996977Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-01-30T01:23:04.2079958+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-stress-cluster-prod/providers/Microsoft.ContainerRegistry/registries/stressprodtj6foiiklcb3m","name":"stressprodtj6foiiklcb3m","location":"westus2","tags":{"displayName":"Stress Test Container Registry"},"systemData":{"createdBy":"bebroder@microsoft.com","createdByType":"User","createdAt":"2025-12-03T19:45:35.5251768+00:00","lastModifiedBy":"bebroder@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-03T22:11:46.7844829+00:00"},"properties":{"loginServer":"stressprodtj6foiiklcb3m.azurecr.io","creationDate":"2025-12-03T19:45:35.5251768Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-12-03T22:11:46.8550379+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/SSS3PT_rg-stress-cluster-pg/providers/Microsoft.ContainerRegistry/registries/stresspg4kuek4dgiq7vo","name":"stresspg4kuek4dgiq7vo","location":"westus3","tags":{"displayName":"Stress Test Container Registry"},"systemData":{"createdBy":"bebroder@microsoft.com","createdByType":"User","createdAt":"2025-12-04T00:13:19.8999695+00:00","lastModifiedBy":"bebroder@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-04T19:59:22.6732115+00:00"},"properties":{"loginServer":"stresspg4kuek4dgiq7vo.azurecr.io","creationDate":"2025-12-04T00:13:19.8999695Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-12-04T19:59:22.7604944+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}]}' + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:25:23 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 19:30:23 GMT + Source-Age: + - "296" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - aa8c5566bac35315e8ae73d487c12bb3f3265751 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760039-MIA + X-Timer: + - S1775762723.379711,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 90.5625ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 19:25:23 GMT + Expires: + - Thu, 09 Apr 2026 19:25:23 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: 103.792417ms + - id: 17 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:25:23 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 19:30:23 GMT + Source-Age: + - "296" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 36a38d4eab4ecc016d72f0b0eb1b29d3ebd3aad9 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760039-MIA + X-Timer: + - S1775762724.515136,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.259667ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 19:25:23 GMT + Expires: + - Thu, 09 Apr 2026 19:25:23 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 132.137667ms + - id: 19 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:25:23 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 19:30:23 GMT + Source-Age: + - "296" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - e390705bef28ac9bfa4a2d51d7b2359ea8a1ec10 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760039-MIA + X-Timer: + - S1775762724.698565,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 20.635791ms + - id: 20 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:25:23 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 19:30:23 GMT + Source-Age: + - "295" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 347281430f2383f980c30e3e0a37c3367f474ad5 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760039-MIA + X-Timer: + - S1775762724.729814,VS0,VE2 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 28.61875ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d23239f%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","name":"rg-azdtest-d23239f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","DeleteAfter":"2026-04-09T20:22:51Z"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "325" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 18f2ceed-9e01-4c8c-a2ea-06fc115de7e2 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192524Z:18f2ceed-9e01-4c8c-a2ea-06fc115de7e2 + X-Msedge-Ref: + - 'Ref A: 3CED1C6FB8264864A20DDEF13BA20F3D Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:24Z' + status: 200 OK + code: 200 + duration: 184.9165ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27app%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 670 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg","name":"app-w7djqs5ah3wpg","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c","clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca"}}},"tags":{"azd-service-name":"app","azd-env-name":"azdtest-d23239f"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "670" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7f075a84-f858-42e1-a463-e271ba7d9c5e + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192524Z:7f075a84-f858-42e1-a463-e271ba7d9c5e + X-Msedge-Ref: + - 'Ref A: 8FC543F202134015B96C8F98690786AD Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:24Z' + status: 200 OK + code: 200 + duration: 234.097416ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armcontainerregistry/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.ContainerRegistry/registries?api-version=2023-07-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 19344 + uncompressed: false + body: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"e49d175a-312d-421d-b143-d405c589f04c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/shayne/providers/Microsoft.ContainerRegistry/registries/shayne","name":"shayne","location":"eastus","tags":{},"systemData":{"lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-17T19:07:01.3208773+00:00"},"properties":{"loginServer":"shayne.azurecr.io","creationDate":"2018-10-04T14:32:50.2017144Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":true}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg","name":"acrw7djqs5ah3wpg","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:22:53.8881212+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:22:53.8881212+00:00"},"properties":{"loginServer":"acrw7djqs5ah3wpg.azurecr.io","creationDate":"2026-04-09T19:22:53.8881212Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T19:23:00.6260378+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-demo-deploy-k8m3/providers/Microsoft.ContainerRegistry/registries/crdemodeployk8m34f2mtj","name":"crdemodeployk8m34f2mtj","location":"eastus2","tags":{"azd-env-name":"demo-deploy-k8m3"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-03-18T20:46:24.2215571+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-18T20:49:31.6759718+00:00"},"properties":{"loginServer":"crdemodeployk8m34f2mtj.azurecr.io","creationDate":"2026-03-18T20:46:24.2215571Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-18T20:49:31.7547864+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu","name":"cryapv6twcracbu","location":"eastus2","tags":{"azd-env-name":"echo-ts-fresh"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-02-25T01:31:49.2670255+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-25T01:31:49.2670255+00:00"},"properties":{"loginServer":"cryapv6twcracbu.azurecr.io","creationDate":"2026-02-25T01:31:49.2670255Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-25T01:31:55.9959613+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-octopets-2025/providers/Microsoft.ContainerRegistry/registries/octopetsacr4iaegwpun4ccq","name":"octopetsacr4iaegwpun4ccq","location":"eastus2","tags":{"aspire-resource-name":"octopetsacr"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2025-10-18T01:45:36.2725192+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-18T01:45:36.2725192+00:00"},"properties":{"loginServer":"octopetsacr4iaegwpun4ccq.azurecr.io","creationDate":"2025-10-18T01:45:36.2725192Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-10-18T01:45:43.4705058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi","name":"crbu3jrqykrwopi","location":"eastus2","tags":{"azd-env-name":"recipe-remix-dev"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-02-14T17:59:17.1800751+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-14T18:04:45.2206516+00:00"},"properties":{"loginServer":"crbu3jrqykrwopi.azurecr.io","creationDate":"2026-02-14T17:59:17.1800751Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-14T18:04:45.3167163+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6","name":"crgnr3um6lencj6","location":"eastus2","tags":{"azd-env-name":"test-agent"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-03-26T06:17:38.7609824+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T06:17:38.7609824+00:00"},"properties":{"loginServer":"crgnr3um6lencj6.azurecr.io","creationDate":"2026-03-26T06:17:38.7609824Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T06:17:51.2415698+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa","name":"crl7csi7ewdknpa","location":"eastus2","tags":{"azd-env-name":"ts-mf-testing"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-02-25T02:01:39.6124024+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-25T02:01:39.6124024+00:00"},"properties":{"loginServer":"crl7csi7ewdknpa.azurecr.io","creationDate":"2026-02-25T02:01:39.6124024Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-25T02:01:46.1892738+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-waza-platform-dev/providers/Microsoft.ContainerRegistry/registries/crkktuwqpce2enu","name":"crkktuwqpce2enu","location":"eastus2","tags":{},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-03-30T22:23:01.0183819+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-02T15:05:57.107355+00:00"},"properties":{"loginServer":"crkktuwqpce2enu.azurecr.io","creationDate":"2026-03-30T22:23:01.0183819Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-31T19:04:30.6539284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog","name":"crfufkrevrlkiog","location":"northcentralus","tags":{"azd-env-name":"calc"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-01-21T04:34:11.5738591+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-22T18:42:59.1517458+00:00"},"properties":{"loginServer":"crfufkrevrlkiog.azurecr.io","creationDate":"2026-01-21T04:34:11.5738591Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-01-22T18:42:59.2857153+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr","name":"5ca082fshboyercopilotprojacr","location":"northcentralus","tags":{},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-01-20T23:22:33.3853723+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-20T23:22:33.3853723+00:00"},"properties":{"loginServer":"5ca082fshboyercopilotprojacr.azurecr.io","creationDate":"2026-01-20T23:22:33.3853723Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-01-20T23:22:40.4076459+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6","name":"crhljrvddu7ixf6","location":"northcentralus","tags":{"azd-env-name":"david-test"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-01-23T20:54:56.2331629+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T20:54:56.2331629+00:00"},"properties":{"loginServer":"crhljrvddu7ixf6.azurecr.io","creationDate":"2026-01-23T20:54:56.2331629Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-01-23T20:55:09.0454183+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq","name":"cr2ane3dhw2abhq","location":"northcentralus","tags":{"azd-env-name":"email-router-agent"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-01-23T00:09:55.5809804+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-23T00:15:23.9312002+00:00"},"properties":{"loginServer":"cr2ane3dhw2abhq.azurecr.io","creationDate":"2026-01-23T00:09:55.5809804Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-01-23T00:15:24.0417442+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-claw/providers/Microsoft.ContainerRegistry/registries/azacrwbutmxjisjubc","name":"azacrwbutmxjisjubc","location":"northcentralus","tags":{},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-03-26T06:59:01.8118103+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T06:59:01.8118103+00:00"},"properties":{"loginServer":"azacrwbutmxjisjubc.azurecr.io","creationDate":"2026-03-26T06:59:01.8118103Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T06:59:09.056196+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc","name":"crqjtivsdac4tdc","location":"northcentralus","tags":{"azd-env-name":"foundry-helper-ncus"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-03-26T20:20:45.2521502+00:00","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-30T21:14:52.647539+00:00"},"properties":{"loginServer":"crqjtivsdac4tdc.azurecr.io","creationDate":"2026-03-26T20:20:45.2521502Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-30T21:14:52.7501541+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "19344" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:24 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Original-Request-Ids: + - "" + - "" + - "" + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1098" + X-Ms-Request-Id: + - b66bc78f-8052-4e61-a901-0e96b6915b15 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192524Z:b66bc78f-8052-4e61-a901-0e96b6915b15 + X-Msedge-Ref: + - 'Ref A: 2D160FEDF78646C18494B98136828D76 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:24Z' + status: 200 OK + code: 200 + duration: 261.9875ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "0" + User-Agent: + - azsdk-go-armcontainerregistry/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/listBuildSourceUploadUrl?api-version=2019-06-01-preview + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"relativePath":"tasks-source/202604090000/48231690e6cbd5e87998c96bc5b7ee9f.tar.gz","uploadUrl":"https://acrtaskprodeus2063.blob.core.windows.net/container-3d7330a33f6447ddb60cb23b97ca6927/tasks-source/202604090000/48231690e6cbd5e87998c96bc5b7ee9f.tar.gz?se=2026-04-09T20%3A25%3A25Z\u0026sig=SANITIZED\u0026ske=2026-04-16T19%3A25%3A25Z\u0026skoid=54ea2226-b787-4507-912e-75de6df49d1d\u0026sks=b\u0026skt=2026-04-09T19%3A20%3A25Z\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skv=2024-11-04\u0026sp=cw\u0026sr=b\u0026sv=2024-11-04"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "529" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:24 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/b5ccf055-b7a3-4197-9220-37103cd552c3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 9834dac1-a6af-4fd5-8f72-1ef92f04433f + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192525Z:87cf9ecc-dbca-44ab-95b1-0d2f4ddc7efb + X-Msedge-Ref: + - 'Ref A: 3F029A7DD8CC42DFA159532A22A2AB37 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:25Z' + status: 200 OK + code: 200 + duration: 231.757ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 467 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: !!binary | + H4sIAAAAAAAA/+yVUWvbMBDH8+xPcfjFLnjyWbHjkpK9JB0do6Skg22MQbX4krp1JVdSRr + rR7z4UN20o2/qyJBT8exG6u9z9D/GPR2p6TXpWVtTZGoiIvTRdnXkvW53Im7sjyXgnyZJe + lue9JE86mHRznnYAtyfpiYWxQncQzeV3dUf6r3XGitnsH30ednk8XwnvJuNTkKqgPuee92 + k8+TB6P4FY1LU3HJ99gVpMr8Wc2JVRciNcyoKW7Mo0oePPZ+PzY+gioucNT0fw1Xct/Qj8 + daH/bd+btvyJ9ftsc8ZL/k+73ef+TzFp/b8LpkoaC5fW1jAATbeLUlMYuHtwcOR5TdqQ/k + EaBqs6NtUkLJ2vYmGo6TYCTeYABm/hlwcA7saMFXZhhqogGABHPHrKkD0hUZAOg6GSlqR9 + 8/GupiCCwNLSxnUlSumGr39AsgiDE6oqFcGF+FlcMJe9d/IaYawqjSUZHuIhRhAuN6Q4/a + oiVql5GDSSQS+kLOUcRLN3P44TnjNkyJK+axE/tN/30+yEzf/3bc14yf+YZc/8n3LOW//v + gsYmvhQ35PfBF3XtR03oRpTShR6/4N79vsW2tLS0tPw3fgcAAP//InlJTAAQAAA= + form: {} + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "467" + Content-Type: + - application/octet-stream + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Blob-Type: + - BlockBlob + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/tasks-source/202604090000/48231690e6cbd5e87998c96bc5b7ee9f.tar.gz?se=2026-04-09T20%3A25%3A25Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=cw&sr=b&sv=2024-11-04 + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Length: + - "0" + Content-Md5: + - Jo7jzCerp4xhfATmPNbG0g== + Date: + - Thu, 09 Apr 2026 19:25:25 GMT + Etag: + - '"0x8DE966DC07076B6"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:25 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Content-Crc64: + - TYujP1Mr+D0= + X-Ms-Request-Id: + - f612862a-501e-00d9-6d56-c85887000000 + X-Ms-Request-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 201 Created + code: 201 + duration: 500.736292ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 308 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"dockerFilePath":"Dockerfile","imageNames":["acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f:azd-deploy-1775762551"],"isPushEnabled":true,"platform":{"architecture":"amd64","os":"Linux"},"sourceLocation":"tasks-source/202604090000/48231690e6cbd5e87998c96bc5b7ee9f.tar.gz","type":"DockerBuildRequest"}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "308" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armcontainerregistry/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/scheduleRun?api-version=2019-06-01-preview + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 522 + uncompressed: false + body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Queued","lastUpdatedTime":"2026-04-09T19:25:25+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:25:25.8478982+00:00"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "522" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:25 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/a64ca223-e270-41f9-a870-fbb902318791 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 295a8df3-4a3d-4631-8b00-8698ef00ea45 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192526Z:a5583c10-83e3-4c87-9c15-69e4ac96a6a9 + X-Msedge-Ref: + - 'Ref A: 623D77B7A4CA47579247C4198F30B683 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:25Z' + status: 200 OK + code: 200 + duration: 234.404209ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "0" + User-Agent: + - azsdk-go-armcontainerregistry/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/runs/ch1/listLogSasUrl?api-version=2019-06-01-preview + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 394 + uncompressed: false + body: '{"logLink":"https://acrtaskprodeus2063.blob.core.windows.net/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z\u0026sig=SANITIZED\u0026ske=2026-04-16T19%3A25%3A25Z\u0026skoid=54ea2226-b787-4507-912e-75de6df49d1d\u0026sks=b\u0026skt=2026-04-09T19%3A20%3A25Z\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skv=2024-11-04\u0026sp=r\u0026sr=b\u0026sv=2024-11-04"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "394" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:25 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/90da1a25-a731-4214-afdc-58be8e286fab + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 4e8d4666-7bca-475b-8206-fac5ad867916 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192526Z:371aa17c-c34e-4dc8-8df7-099dfd9a2824 + X-Msedge-Ref: + - 'Ref A: 83D3C30BF0134659B1F981255D0E0921 Ref B: BN1AA2051013033 Ref C: 2026-04-09T19:25:26Z' + status: 200 OK + code: 200 + duration: 189.835666ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: false + body: "" + headers: + Date: + - Thu, 09 Apr 2026 19:25:25 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Error-Code: + - BlobNotFound + X-Ms-Request-Id: + - f61288e6-501e-00d9-4c56-c85887000000 + X-Ms-Version: + - "2025-11-05" + status: 404 The specified blob does not exist. + code: 404 + duration: 43.526917ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 766 + uncompressed: false + body: "" + headers: + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 + Content-Length: + - "766" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:30 GMT + Etag: + - '"0x8DE966DC2C2EDC7"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:29 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "3" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f6129cd9-501e-00d9-2f56-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 200 OK + code: 200 + duration: 46.057542ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=0-765 + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 766 + uncompressed: false + body: "2026/04/09 19:25:26 Downloading source code...\r\n2026/04/09 19:25:27 Finished downloading source code\r\n2026/04/09 19:25:27 Using acb_vol_24434bb8-bfab-440a-8690-17b0ffbdd9fb as the home volume\n2026/04/09 19:25:27 Setting up Docker configuration...\n2026/04/09 19:25:28 Successfully set up Docker configuration\n2026/04/09 19:25:28 Logging in to registry: acrw7djqs5ah3wpg.azurecr.io\n2026/04/09 19:25:28 Successfully logged into acrw7djqs5ah3wpg.azurecr.io\n2026/04/09 19:25:28 Executing step ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2026/04/09 19:25:28 Scanning for dependencies...\n2026/04/09 19:25:29 Successfully scanned dependencies\n2026/04/09 19:25:29 Launching container with name: build\nSending build context to Docker daemon 4.096kB\r\r\r\n" + headers: + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 + Content-Length: + - "766" + Content-Range: + - bytes 0-765/766 + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:30 GMT + Etag: + - '"0x8DE966DC2C2EDC7"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:29 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "3" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f6129d3d-501e-00d9-0156-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 206 Partial Content + code: 206 + duration: 45.524292ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 766 + uncompressed: false + body: "" + headers: + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 + Content-Length: + - "766" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:30 GMT + Etag: + - '"0x8DE966DC2C2EDC7"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:29 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "3" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f6129d6f-501e-00d9-2d56-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 200 OK + code: 200 + duration: 46.416458ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1309 + uncompressed: false + body: "" headers: - Cache-Control: - - no-cache + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 Content-Length: - - "30227" + - "1309" Content-Type: - - application/json; charset=utf-8 + - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:01 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff + - Thu, 09 Apr 2026 19:25:31 GMT + Etag: + - '"0x8DE966DC3F6F2CF"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:31 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "4" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f612a211-501e-00d9-2156-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 200 OK + code: 200 + duration: 42.7495ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Original-Request-Ids: - - "" - - "" - - "" + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=766-1308 + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: "Step 1/6 : FROM node:22\n22: Pulling from library/node\nc150dd3f5fc9: Pulling fs layer\nc2c3414b1d6b: Pulling fs layer\nde73ef470b7b: Pulling fs layer\nb267853a2602: Pulling fs layer\n69aa42e2f5dc: Pulling fs layer\nedd2033e60e9: Pulling fs layer\n1890b0d39646: Pulling fs layer\n7cef8de23212: Pulling fs layer\nb267853a2602: Waiting\n69aa42e2f5dc: Waiting\nedd2033e60e9: Waiting\n1890b0d39646: Waiting\n7cef8de23212: Waiting\nc2c3414b1d6b: Verifying Checksum\nc2c3414b1d6b: Download complete\nc150dd3f5fc9: Verifying Checksum\nc150dd3f5fc9: Download complete\r\n" + headers: + Accept-Ranges: + - bytes + Content-Disposition: - "" + Content-Encoding: + - utf-8 + Content-Length: + - "543" + Content-Range: + - bytes 766-1308/1309 + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:31 GMT + Etag: + - '"0x8DE966DC3F6F2CF"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:31 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "4" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f612a24e-501e-00d9-5956-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 206 Partial Content + code: 206 + duration: 41.331791ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1309 + uncompressed: false + body: "" + headers: + Accept-Ranges: + - bytes + Content-Disposition: - "" + Content-Encoding: + - utf-8 + Content-Length: + - "1309" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:32 GMT + Etag: + - '"0x8DE966DC3F6F2CF"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:31 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "4" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f612a293-501e-00d9-1356-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 200 OK + code: 200 + duration: 42.921ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1309 + uncompressed: false + body: "" + headers: + Accept-Ranges: + - bytes + Content-Disposition: - "" + Content-Encoding: + - utf-8 + Content-Length: + - "1309" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:33 GMT + Etag: + - '"0x8DE966DC3F6F2CF"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:31 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "4" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f612a6d2-501e-00d9-3956-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 200 OK + code: 200 + duration: 44.312375ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1663 + uncompressed: false + body: "" + headers: + Accept-Ranges: + - bytes + Content-Disposition: - "" - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + Content-Encoding: + - utf-8 + Content-Length: + - "1663" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:34 GMT + Etag: + - '"0x8DE966DC54BBEA7"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:33 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "5" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked X-Ms-Request-Id: - - ec7ef788-e019-4852-b8ae-1da2841ddf5b - X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003801Z:ec7ef788-e019-4852-b8ae-1da2841ddf5b - X-Msedge-Ref: - - 'Ref A: 7E2D2F16F87A4E3CBFA307B1BDA7B53C Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:38:00Z' + - f612aa95-501e-00d9-6756-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" status: 200 OK code: 200 - duration: 1.251254799s - - id: 14 + duration: 44.205208ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -3695,221 +11424,297 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" form: {} headers: Accept: - - application/json + - application/xml Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "0" User-Agent: - - azsdk-go-armcontainerregistry/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/listBuildSourceUploadUrl?api-version=2019-06-01-preview - method: POST + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=1309-1662 + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 354 uncompressed: false - body: '{"relativePath":"tasks-source/202602180000/0f02893c25c9e50283d2d0877d254872.tar.gz","uploadUrl":"https://acrtaskprodeus2050.blob.core.windows.net/container-64494fec737d456ca96209ce52a9efa8/tasks-source/202602180000/0f02893c25c9e50283d2d0877d254872.tar.gz?se=2026-02-18T01%3A38%3A01Z\u0026sig=SANITIZED\u0026ske=2026-02-25T00%3A38%3A02Z\u0026skoid=54ea2226-b787-4507-912e-75de6df49d1d\u0026sks=b\u0026skt=2026-02-18T00%3A33%3A02Z\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skv=2024-11-04\u0026sp=cw\u0026sr=b\u0026sv=2024-11-04"}' + body: "69aa42e2f5dc: Verifying Checksum\n69aa42e2f5dc: Download complete\nedd2033e60e9: Verifying Checksum\nedd2033e60e9: Download complete\n1890b0d39646: Verifying Checksum\n1890b0d39646: Download complete\n7cef8de23212: Verifying Checksum\n7cef8de23212: Download complete\nde73ef470b7b: Verifying Checksum\nde73ef470b7b: Download complete\nc150dd3f5fc9: Pull complete\r\n" headers: - Cache-Control: - - no-cache + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 Content-Length: - - "525" + - "354" + Content-Range: + - bytes 1309-1662/1663 Content-Type: - - application/json; charset=utf-8 + - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:01 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/5d5dfc6c-b1f1-4929-9fb9-5d06f2a7b344 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "2999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "199" + - Thu, 09 Apr 2026 19:25:34 GMT + Etag: + - '"0x8DE966DC54BBEA7"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:33 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "5" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked X-Ms-Request-Id: - - f743ff8c-9d12-4803-ab6c-b48e38e862b3 - X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003802Z:5abb90d4-5769-4767-b0f9-dce74d6a1e95 - X-Msedge-Ref: - - 'Ref A: D41D45916F0B47A7AFBBFD5D2EA42617 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:38:01Z' - status: 200 OK - code: 200 - duration: 512.623842ms - - id: 15 + - f612aab5-501e-00d9-0256-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 206 Partial Content + code: 206 + duration: 45.128625ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 466 + content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" - body: !!binary | - H4sIAAAAAAAA/+yVUWvbMBDH82zwdzj8Yhc8+ew4dknJXtKOjlFS0sE2xqDCvmVuXcmVlJ - Jt9LsP20nn9WF5mRsG/r0InS53/5P4x6cyuyX1tShp1BuIiEkc12uYTrC7NoRJOAonYTyJ - MB6n6QjDcYrJCLA/Sb9Za8PVCPFBZzL/yyXsO9/O8rT+J7xZLi5AyJymUWRbtvVhsXx3+n - YJAa8q25ovLj9BxbNbviJ2o6XoxguR04bd6G3s7OPl4uoMxohYF5pfnMJnp67s+ODscp0v - hx544A92D9Nnj33+j+PJc/+Pk8H/L0ImhTbwzZgKZqDofl0o8tx67x6d1D5uEzSpB1Iwaz - JZpogbumpinqfo3gdF+ghmr+GnbQFAvWXacLPWc5kTzCBCPOkckTknnpPy3LkUhoR59f57 - Ra4PrqGNCaqSF6IRsPsFidxzz6kspQ/X/Ed+zZrjx1ZkK4+VhTYkvGM8Rh+8TVdQPYYsiZ - Vy5bmtclBrIQqxAt5ewDQIwihlyJCF07pGsGtx6Efqke6fe1899vkfE3zm/zhCHPz/Emzt - 4Qh+R84UHF5Vjr+N3fFC1LGnj7dtPR5a78DAwMDAv+FXAAAA//8ZuMldABAAAA== + body: "" form: {} headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED - Content-Length: - - "466" - Content-Type: - - application/octet-stream User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) - X-Ms-Blob-Type: - - BlockBlob + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/tasks-source/202602180000/0f02893c25c9e50283d2d0877d254872.tar.gz?se=2026-02-18T01%3A38%3A01Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=cw&sr=b&sv=2024-11-04 - method: PUT + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1663 uncompressed: false body: "" headers: + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 Content-Length: - - "0" - Content-Md5: - - nQTcXb2Q0XgkgB57ggXWug== + - "1663" + Content-Type: + - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:02 GMT + - Thu, 09 Apr 2026 19:25:34 GMT Etag: - - '"0x8DE6E85F9394033"' + - '"0x8DE966DC54BBEA7"' Last-Modified: - - Wed, 18 Feb 2026 00:38:02 GMT + - Thu, 09 Apr 2026 19:25:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - X-Ms-Content-Crc64: - - LmqCk7VtmBw= + X-Ms-Blob-Committed-Block-Count: + - "5" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked X-Ms-Request-Id: - - 66d42be0-c01e-0031-236e-a09036000000 - X-Ms-Request-Server-Encrypted: + - f612aadd-501e-00d9-2456-c85887000000 + X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 201 Created - code: 201 - duration: 375.795469ms - - id: 16 + status: 200 OK + code: 200 + duration: 46.288959ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 308 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" - body: '{"dockerFilePath":"Dockerfile","imageNames":["acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26:azd-deploy-1771374846"],"isPushEnabled":true,"platform":{"architecture":"amd64","os":"Linux"},"sourceLocation":"tasks-source/202602180000/0f02893c25c9e50283d2d0877d254872.tar.gz","type":"DockerBuildRequest"}' + body: "" form: {} headers: Accept: - - application/json - Accept-Encoding: - - gzip + - application/xml Authorization: - SANITIZED - Content-Length: - - "308" - Content-Type: - - application/json User-Agent: - - azsdk-go-armcontainerregistry/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/scheduleRun?api-version=2019-06-01-preview - method: POST + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 1663 uncompressed: false - body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Queued","lastUpdatedTime":"2026-02-18T00:38:02+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:38:02.5838224+00:00"}}' + body: "" headers: - Cache-Control: - - no-cache + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 Content-Length: - - "526" + - "1663" Content-Type: - - application/json; charset=utf-8 + - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:02 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff + - Thu, 09 Apr 2026 19:25:35 GMT + Etag: + - '"0x8DE966DC54BBEA7"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:33 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "5" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f612ae91-501e-00d9-4556-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" + status: 200 OK + code: 200 + duration: 43.251ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: acrtaskprodeus2063.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/19ffe580-554d-485c-b71b-7418ec5a8a42 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "2999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "199" + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1663 + uncompressed: false + body: "" + headers: + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 + Content-Length: + - "1663" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:25:36 GMT + Etag: + - '"0x8DE966DC54BBEA7"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:33 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "5" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked X-Ms-Request-Id: - - 103e164f-a1b6-414a-897e-ac0f0844ad05 - X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003802Z:a9d5b8cc-37ea-4301-8685-b78fdfc8ab0d - X-Msedge-Ref: - - 'Ref A: E067E7C16BE24DE99646F141C8025C8C Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:38:02Z' + - f612b22d-501e-00d9-4956-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" status: 200 OK code: 200 - duration: 313.15254ms - - id: 17 + duration: 47.128084ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -3917,72 +11722,72 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" form: {} headers: Accept: - - application/json - Accept-Encoding: - - gzip + - application/xml Authorization: - SANITIZED - Content-Length: - - "0" User-Agent: - - azsdk-go-armcontainerregistry/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/runs/ch1/listLogSasUrl?api-version=2019-06-01-preview - method: POST + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Version: + - "2025-11-05" + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 1720 uncompressed: false - body: '{"logLink":"https://acrtaskprodeus2050.blob.core.windows.net/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z\u0026sig=SANITIZED\u0026ske=2026-02-25T00%3A38%3A02Z\u0026skoid=54ea2226-b787-4507-912e-75de6df49d1d\u0026sks=b\u0026skt=2026-02-18T00%3A33%3A02Z\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skv=2024-11-04\u0026sp=r\u0026sr=b\u0026sv=2024-11-04"}' + body: "" headers: - Cache-Control: - - no-cache + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 Content-Length: - - "396" + - "1720" Content-Type: - - application/json; charset=utf-8 + - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:02 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/c19146c3-6345-4332-a6a2-0feb06d2ae5b - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "2999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "199" + - Thu, 09 Apr 2026 19:25:37 GMT + Etag: + - '"0x8DE966DC765FBC2"' + Last-Modified: + - Thu, 09 Apr 2026 19:25:37 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "6" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Thu, 09 Apr 2026 19:25:26 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked X-Ms-Request-Id: - - 012bf9d9-3ab7-43b4-aa64-e1a7a0d12bae - X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003803Z:17291bbb-fc2d-4a2a-a67c-2d15f7ef9953 - X-Msedge-Ref: - - 'Ref A: 49DB4184EE21416B8C7D4109EDC0DD4C Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:38:02Z' + - f612b608-501e-00d9-7356-c85887000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2025-11-05" status: 200 OK code: 200 - duration: 310.380725ms - - id: 18 + duration: 53.799791ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -3990,7 +11795,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3998,25 +11803,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=1663-1719 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 57 uncompressed: false - body: "" + body: "c2c3414b1d6b: Pull complete\nde73ef470b7b: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -4025,37 +11834,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "0" + - "57" + Content-Range: + - bytes 1663-1719/1720 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:02 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Etag: - - '"0x8DE6E85F9A23A3A"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "0" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d42db7-c01e-0031-4d6e-a09036000000 + - f612b662-501e-00d9-4456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 72.364336ms - - id: 19 + status: 206 Partial Content + code: 206 + duration: 47.235958ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -4063,7 +11874,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4074,12 +11885,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4087,7 +11898,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 1720 uncompressed: false body: "" headers: @@ -4098,37 +11909,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "102" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Etag: - - '"0x8DE6E85FA16246E"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "2" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d430bf-c01e-0031-166e-a09036000000 + - f612b6e7-501e-00d9-4056-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.750366ms - - id: 20 + duration: 45.850084ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -4136,7 +11947,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4144,29 +11955,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=0-101 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 1720 uncompressed: false - body: "2026/02/18 00:38:03 Downloading source code...\r\n2026/02/18 00:38:03 Finished downloading source code\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -4175,39 +11982,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "102" - Content-Range: - - bytes 0-101/102 + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:04 GMT + - Thu, 09 Apr 2026 19:25:38 GMT Etag: - - '"0x8DE6E85FA16246E"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "2" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d430ef-c01e-0031-406e-a09036000000 + - f612ba9e-501e-00d9-7956-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 73.760595ms - - id: 21 + status: 200 OK + code: 200 + duration: 41.010708ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -4215,7 +12020,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4226,12 +12031,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4239,7 +12044,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 1720 uncompressed: false body: "" headers: @@ -4250,37 +12055,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "102" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:04 GMT + - Thu, 09 Apr 2026 19:25:39 GMT Etag: - - '"0x8DE6E85FA16246E"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "2" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43130-c01e-0031-7b6e-a09036000000 + - f612be15-501e-00d9-3f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.90667ms - - id: 22 + duration: 40.356917ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -4288,7 +12093,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4299,12 +12104,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4312,7 +12117,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 1720 uncompressed: false body: "" headers: @@ -4323,37 +12128,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "102" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:05 GMT + - Thu, 09 Apr 2026 19:25:40 GMT Etag: - - '"0x8DE6E85FA16246E"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "2" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43372-c01e-0031-7e6e-a09036000000 + - f612c223-501e-00d9-3556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.644367ms - - id: 23 + duration: 42.925542ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -4361,7 +12166,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4372,12 +12177,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4385,7 +12190,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 1720 uncompressed: false body: "" headers: @@ -4396,37 +12201,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:06 GMT + - Thu, 09 Apr 2026 19:25:41 GMT Etag: - - '"0x8DE6E85FB4BC148"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:05 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "3" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43707-c01e-0031-606e-a09036000000 + - f612c602-501e-00d9-7256-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.493337ms - - id: 24 + duration: 42.174208ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -4434,7 +12239,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4442,29 +12247,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=102-789 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 1720 uncompressed: false - body: "2026/02/18 00:38:04 Using acb_vol_2048ba47-23fe-4019-a50f-1e834f10a8d1 as the home volume\n2026/02/18 00:38:04 Setting up Docker configuration...\n2026/02/18 00:38:04 Successfully set up Docker configuration\n2026/02/18 00:38:04 Logging in to registry: acrxvttwt2sqmqis.azurecr.io\n2026/02/18 00:38:05 Successfully logged into acrxvttwt2sqmqis.azurecr.io\n2026/02/18 00:38:05 Executing step ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2026/02/18 00:38:05 Scanning for dependencies...\n2026/02/18 00:38:05 Successfully scanned dependencies\n2026/02/18 00:38:05 Launching container with name: build\nSending build context to Docker daemon 4.096kB\r\r\nStep 1/6 : FROM node:22\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -4473,39 +12274,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "688" - Content-Range: - - bytes 102-789/790 + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:06 GMT + - Thu, 09 Apr 2026 19:25:42 GMT Etag: - - '"0x8DE6E85FB4BC148"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:05 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "3" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43732-c01e-0031-076e-a09036000000 + - f612ca6d-501e-00d9-6656-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 71.983593ms - - id: 25 + status: 200 OK + code: 200 + duration: 43.915ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -4513,7 +12312,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4524,12 +12323,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4537,7 +12336,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 1720 uncompressed: false body: "" headers: @@ -4548,37 +12347,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:06 GMT + - Thu, 09 Apr 2026 19:25:43 GMT Etag: - - '"0x8DE6E85FB4BC148"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:05 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "3" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4375f-c01e-0031-306e-a09036000000 + - f612ce15-501e-00d9-7a56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.635139ms - - id: 26 + duration: 40.423208ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -4586,7 +12385,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4597,12 +12396,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4610,7 +12409,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 1720 uncompressed: false body: "" headers: @@ -4621,37 +12420,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:07 GMT + - Thu, 09 Apr 2026 19:25:45 GMT Etag: - - '"0x8DE6E85FB4BC148"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:05 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "3" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43944-c01e-0031-496e-a09036000000 + - f612d1d9-501e-00d9-3056-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.52094ms - - id: 27 + duration: 47.888167ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -4659,7 +12458,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4670,12 +12469,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4683,7 +12482,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 1720 uncompressed: false body: "" headers: @@ -4694,37 +12493,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1439" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:08 GMT + - Thu, 09 Apr 2026 19:25:46 GMT Etag: - - '"0x8DE6E85FC94D046"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:08 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "4" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43b63-c01e-0031-156e-a09036000000 + - f612d5ca-501e-00d9-0156-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.022705ms - - id: 28 + duration: 42.493166ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -4732,7 +12531,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4740,29 +12539,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=790-1438 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 649 + content_length: 1720 uncompressed: false - body: "22: Pulling from library/node\n6bc9f599b3ef: Pulling fs layer\n89edcaae7ec4: Pulling fs layer\nbbceb0035429: Pulling fs layer\n6dc8224e38b6: Pulling fs layer\ndddde450c5b0: Pulling fs layer\neb726708ba65: Pulling fs layer\naee6f605b704: Pulling fs layer\n76911bc9fc30: Pulling fs layer\ndddde450c5b0: Waiting\neb726708ba65: Waiting\naee6f605b704: Waiting\n76911bc9fc30: Waiting\n6dc8224e38b6: Waiting\n89edcaae7ec4: Verifying Checksum\n89edcaae7ec4: Download complete\nbbceb0035429: Verifying Checksum\nbbceb0035429: Download complete\ndddde450c5b0: Verifying Checksum\ndddde450c5b0: Download complete\n6bc9f599b3ef: Verifying Checksum\n6bc9f599b3ef: Download complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -4771,39 +12566,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "649" - Content-Range: - - bytes 790-1438/1439 + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:08 GMT + - Thu, 09 Apr 2026 19:25:47 GMT Etag: - - '"0x8DE6E85FC94D046"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:08 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "4" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43b7d-c01e-0031-286e-a09036000000 + - f612d9bf-501e-00d9-6856-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 71.72008ms - - id: 29 + status: 200 OK + code: 200 + duration: 43.175458ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -4811,7 +12604,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4822,12 +12615,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4835,7 +12628,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 1720 uncompressed: false body: "" headers: @@ -4846,37 +12639,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1439" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:08 GMT + - Thu, 09 Apr 2026 19:25:48 GMT Etag: - - '"0x8DE6E85FC94D046"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:08 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "4" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43bbe-c01e-0031-5f6e-a09036000000 + - f612dd76-501e-00d9-0b56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.935495ms - - id: 30 + duration: 43.222083ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -4884,7 +12677,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4895,12 +12688,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4908,7 +12701,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 1720 uncompressed: false body: "" headers: @@ -4919,37 +12712,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1439" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:09 GMT + - Thu, 09 Apr 2026 19:25:49 GMT Etag: - - '"0x8DE6E85FC94D046"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:08 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "4" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d43eb9-c01e-0031-066e-a09036000000 + - f612e134-501e-00d9-2a56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.112314ms - - id: 31 + duration: 42.947791ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -4957,7 +12750,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4968,12 +12761,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -4981,7 +12774,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1663 + content_length: 1720 uncompressed: false body: "" headers: @@ -4992,37 +12785,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1663" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:10 GMT + - Thu, 09 Apr 2026 19:25:50 GMT Etag: - - '"0x8DE6E85FE1D86CF"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:10 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d44156-c01e-0031-4f6e-a09036000000 + - f612e535-501e-00d9-1756-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.648265ms - - id: 32 + duration: 43.089291ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -5030,7 +12823,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5038,29 +12831,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=1439-1662 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 224 + content_length: 1720 uncompressed: false - body: "aee6f605b704: Verifying Checksum\naee6f605b704: Download complete\n76911bc9fc30: Verifying Checksum\n76911bc9fc30: Download complete\neb726708ba65: Verifying Checksum\neb726708ba65: Download complete\n6bc9f599b3ef: Pull complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -5069,39 +12858,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "224" - Content-Range: - - bytes 1439-1662/1663 + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:11 GMT + - Thu, 09 Apr 2026 19:25:51 GMT Etag: - - '"0x8DE6E85FE1D86CF"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:10 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d441b1-c01e-0031-1d6e-a09036000000 + - f612e943-501e-00d9-1756-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 71.212425ms - - id: 33 + status: 200 OK + code: 200 + duration: 42.439083ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -5109,7 +12896,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5120,12 +12907,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5133,7 +12920,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1663 + content_length: 1720 uncompressed: false body: "" headers: @@ -5144,37 +12931,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1663" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:11 GMT + - Thu, 09 Apr 2026 19:25:52 GMT Etag: - - '"0x8DE6E85FE1D86CF"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:10 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d441e0-c01e-0031-486e-a09036000000 + - f612ed12-501e-00d9-5b56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 74.722107ms - - id: 34 + duration: 47.287208ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -5182,7 +12969,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5193,12 +12980,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5206,7 +12993,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1663 + content_length: 1720 uncompressed: false body: "" headers: @@ -5217,37 +13004,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1663" + - "1720" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:12 GMT + - Thu, 09 Apr 2026 19:25:53 GMT Etag: - - '"0x8DE6E85FE1D86CF"' + - '"0x8DE966DC765FBC2"' Last-Modified: - - Wed, 18 Feb 2026 00:38:10 GMT + - Thu, 09 Apr 2026 19:25:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4441c-c01e-0031-436e-a09036000000 + - f612f181-501e-00d9-2f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.553163ms - - id: 35 + duration: 50.588583ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -5255,7 +13042,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5266,12 +13053,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5279,7 +13066,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1663 + content_length: 1786 uncompressed: false body: "" headers: @@ -5290,37 +13077,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1663" + - "1786" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:13 GMT + - Thu, 09 Apr 2026 19:25:54 GMT Etag: - - '"0x8DE6E85FE1D86CF"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:10 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d446d7-c01e-0031-2d6e-a09036000000 + - f612f556-501e-00d9-7f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.745283ms - - id: 36 + duration: 39.8005ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -5328,7 +13115,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5336,25 +13123,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=1720-1785 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1785 + content_length: 66 uncompressed: false - body: "" + body: "b267853a2602: Verifying Checksum\nb267853a2602: Download complete\r\n" headers: Accept-Ranges: - bytes @@ -5363,37 +13154,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1785" + - "66" + Content-Range: + - bytes 1720-1785/1786 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:54 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d448ca-c01e-0031-5d6e-a09036000000 + - f612f590-501e-00d9-2f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 71.869197ms - - id: 37 + status: 206 Partial Content + code: 206 + duration: 45.932292ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -5401,7 +13194,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5409,29 +13202,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=1663-1784 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 122 + content_length: 1786 uncompressed: false - body: "6dc8224e38b6: Verifying Checksum\n6dc8224e38b6: Download complete\n89edcaae7ec4: Pull complete\nbbceb0035429: Pull complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -5440,39 +13229,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "122" - Content-Range: - - bytes 1663-1784/1785 + - "1786" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:54 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d448ef-c01e-0031-7f6e-a09036000000 + - f612f5be-501e-00d9-5456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 71.558463ms - - id: 38 + status: 200 OK + code: 200 + duration: 40.090708ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -5480,7 +13267,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5491,12 +13278,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5504,7 +13291,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1785 + content_length: 1786 uncompressed: false body: "" headers: @@ -5515,37 +13302,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1785" + - "1786" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4492e-c01e-0031-376e-a09036000000 + - f612f95b-501e-00d9-7556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.858996ms - - id: 39 + duration: 43.197958ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -5553,7 +13340,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5564,12 +13351,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5577,7 +13364,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1785 + content_length: 1786 uncompressed: false body: "" headers: @@ -5588,37 +13375,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1785" + - "1786" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:15 GMT + - Thu, 09 Apr 2026 19:25:56 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d44b9d-c01e-0031-466e-a09036000000 + - f612fcf7-501e-00d9-8056-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.462261ms - - id: 40 + duration: 41.1825ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -5626,7 +13413,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5637,12 +13424,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5650,7 +13437,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1785 + content_length: 1786 uncompressed: false body: "" headers: @@ -5661,37 +13448,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1785" + - "1786" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:16 GMT + - Thu, 09 Apr 2026 19:25:58 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d44de3-c01e-0031-2f6e-a09036000000 + - f61300b2-501e-00d9-2556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.869689ms - - id: 41 + duration: 45.92325ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -5699,7 +13486,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5710,12 +13497,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5723,7 +13510,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1785 + content_length: 1786 uncompressed: false body: "" headers: @@ -5734,37 +13521,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1785" + - "1786" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:17 GMT + - Thu, 09 Apr 2026 19:25:59 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d45052-c01e-0031-4d6e-a09036000000 + - f61304e6-501e-00d9-4456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.903882ms - - id: 42 + duration: 40.926208ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -5772,7 +13559,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5783,12 +13570,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5796,7 +13583,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1785 + content_length: 1786 uncompressed: false body: "" headers: @@ -5807,37 +13594,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1785" + - "1786" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:18 GMT + - Thu, 09 Apr 2026 19:26:00 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD1EB7D6B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:25:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d452e6-c01e-0031-1d6e-a09036000000 + - f6130918-501e-00d9-7556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.760966ms - - id: 43 + duration: 44.88275ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -5845,7 +13632,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5856,12 +13643,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -5869,7 +13656,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1785 + content_length: 1815 uncompressed: false body: "" headers: @@ -5880,37 +13667,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1785" + - "1815" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:19 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Etag: - - '"0x8DE6E8600338671"' + - '"0x8DE966DD5F388BB"' Last-Modified: - - Wed, 18 Feb 2026 00:38:14 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d455dd-c01e-0031-396e-a09036000000 + - f6130d8c-501e-00d9-0656-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.15192ms - - id: 44 + duration: 41.117667ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -5918,7 +13705,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5926,25 +13713,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=1786-1814 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 29 uncompressed: false - body: "" + body: "b267853a2602: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -5953,37 +13744,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1814" + - "29" + Content-Range: + - bytes 1786-1814/1815 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:20 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Etag: - - '"0x8DE6E8604420CAE"' + - '"0x8DE966DD5F388BB"' Last-Modified: - - Wed, 18 Feb 2026 00:38:20 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d458d8-c01e-0031-6f6e-a09036000000 + - f6130da9-501e-00d9-2156-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 70.943686ms - - id: 45 + status: 206 Partial Content + code: 206 + duration: 41.25675ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -5991,7 +13784,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5999,29 +13792,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=1785-1813 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 29 + content_length: 1815 uncompressed: false - body: "6dc8224e38b6: Pull complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -6030,39 +13819,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "29" - Content-Range: - - bytes 1785-1813/1814 + - "1815" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:21 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Etag: - - '"0x8DE6E8604420CAE"' + - '"0x8DE966DD5F388BB"' Last-Modified: - - Wed, 18 Feb 2026 00:38:20 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4591f-c01e-0031-316e-a09036000000 + - f6130dd8-501e-00d9-4a56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 71.975401ms - - id: 46 + status: 200 OK + code: 200 + duration: 43.202ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -6070,7 +13857,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6081,12 +13868,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6094,7 +13881,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1815 uncompressed: false body: "" headers: @@ -6105,37 +13892,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1814" + - "1815" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:21 GMT + - Thu, 09 Apr 2026 19:26:02 GMT Etag: - - '"0x8DE6E8604420CAE"' + - '"0x8DE966DD5F388BB"' Last-Modified: - - Wed, 18 Feb 2026 00:38:20 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d45957-c01e-0031-606e-a09036000000 + - f61311b3-501e-00d9-0d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.094303ms - - id: 47 + duration: 42.497208ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -6143,7 +13930,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6154,12 +13941,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6167,7 +13954,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1815 uncompressed: false body: "" headers: @@ -6178,37 +13965,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1814" + - "1815" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:22 GMT + - Thu, 09 Apr 2026 19:26:03 GMT Etag: - - '"0x8DE6E8604420CAE"' + - '"0x8DE966DD5F388BB"' Last-Modified: - - Wed, 18 Feb 2026 00:38:20 GMT + - Thu, 09 Apr 2026 19:26:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d45c79-c01e-0031-3c6e-a09036000000 + - f6131536-501e-00d9-7d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.381646ms - - id: 48 + duration: 45.667584ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -6216,7 +14003,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6227,12 +14014,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6240,7 +14027,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1871 + content_length: 1872 uncompressed: false body: "" headers: @@ -6251,37 +14038,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1871" + - "1872" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:23 GMT + - Thu, 09 Apr 2026 19:26:04 GMT Etag: - - '"0x8DE6E8605CE41AE"' + - '"0x8DE966DD7A11175"' Last-Modified: - - Wed, 18 Feb 2026 00:38:23 GMT + - Thu, 09 Apr 2026 19:26:04 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d45f46-c01e-0031-386e-a09036000000 + - f61318ac-501e-00d9-4356-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.747175ms - - id: 49 + duration: 43.73075ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -6289,7 +14076,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6302,14 +14089,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Range: - - bytes=1814-1870 + - bytes=1815-1871 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: GET response: proto: HTTP/1.1 @@ -6319,7 +14106,7 @@ interactions: trailer: {} content_length: 57 uncompressed: false - body: "dddde450c5b0: Pull complete\neb726708ba65: Pull complete\r\n" + body: "69aa42e2f5dc: Pull complete\nedd2033e60e9: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -6330,37 +14117,37 @@ interactions: Content-Length: - "57" Content-Range: - - bytes 1814-1870/1871 + - bytes 1815-1871/1872 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:23 GMT + - Thu, 09 Apr 2026 19:26:04 GMT Etag: - - '"0x8DE6E8605CE41AE"' + - '"0x8DE966DD7A11175"' Last-Modified: - - Wed, 18 Feb 2026 00:38:23 GMT + - Thu, 09 Apr 2026 19:26:04 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d45f8c-c01e-0031-7b6e-a09036000000 + - f61318d9-501e-00d9-6b56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 206 Partial Content code: 206 - duration: 71.511249ms - - id: 50 + duration: 41.89175ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -6368,7 +14155,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6379,12 +14166,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6392,7 +14179,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1871 + content_length: 1872 uncompressed: false body: "" headers: @@ -6403,37 +14190,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1871" + - "1872" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:23 GMT + - Thu, 09 Apr 2026 19:26:04 GMT Etag: - - '"0x8DE6E8605CE41AE"' + - '"0x8DE966DD7A11175"' Last-Modified: - - Wed, 18 Feb 2026 00:38:23 GMT + - Thu, 09 Apr 2026 19:26:04 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d45fcc-c01e-0031-376e-a09036000000 + - f6131916-501e-00d9-1c56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.553043ms - - id: 51 + duration: 65.346417ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -6441,7 +14228,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6452,12 +14239,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6465,7 +14252,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1871 + content_length: 1872 uncompressed: false body: "" headers: @@ -6476,37 +14263,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1871" + - "1872" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:24 GMT + - Thu, 09 Apr 2026 19:26:05 GMT Etag: - - '"0x8DE6E8605CE41AE"' + - '"0x8DE966DD7A11175"' Last-Modified: - - Wed, 18 Feb 2026 00:38:23 GMT + - Thu, 09 Apr 2026 19:26:04 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d46258-c01e-0031-6b6e-a09036000000 + - f6131c0c-501e-00d9-2856-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.679578ms - - id: 52 + duration: 43.566083ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -6514,7 +14301,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6525,12 +14312,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6538,7 +14325,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 2272 uncompressed: false body: "" headers: @@ -6549,37 +14336,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2271" + - "2272" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:06 GMT Etag: - - '"0x8DE6E860723ECA6"' + - '"0x8DE966DD8F6E46F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:06 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d464b5-c01e-0031-016e-a09036000000 + - f6131f96-501e-00d9-0d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.199724ms - - id: 53 + duration: 46.056542ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -6587,7 +14374,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6600,14 +14387,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Range: - - bytes=1871-2270 + - bytes=1872-2271 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: GET response: proto: HTTP/1.1 @@ -6617,7 +14404,7 @@ interactions: trailer: {} content_length: 400 uncompressed: false - body: "aee6f605b704: Pull complete\n76911bc9fc30: Pull complete\nDigest: sha256:379c51ac7bbf9bffe16769cfda3eb027d59d9c66ac314383da3fcf71b46d026c\nStatus: Downloaded newer image for node:22\n ---> 080dd7f1e127\nStep 2/6 : WORKDIR /app\n ---> Running in f84040ba6198\nRemoving intermediate container f84040ba6198\n ---> a441742cc3d6\nStep 3/6 : COPY package.json /app\n ---> d58ca43f6b61\nStep 4/6 : COPY index.js /app\r\n" + body: "1890b0d39646: Pull complete\n7cef8de23212: Pull complete\nDigest: sha256:ecabd1cb6956d7acfffe8af6bbfbe2df42362269fd28c227f36367213d0bb777\nStatus: Downloaded newer image for node:22\n ---> 875d68658cec\nStep 2/6 : WORKDIR /app\n ---> Running in 10f61c96469a\nRemoving intermediate container 10f61c96469a\n ---> 0b8f4f974fb3\nStep 3/6 : COPY package.json /app\n ---> 7631ba0b38e8\nStep 4/6 : COPY index.js /app\r\n" headers: Accept-Ranges: - bytes @@ -6628,37 +14415,37 @@ interactions: Content-Length: - "400" Content-Range: - - bytes 1871-2270/2271 + - bytes 1872-2271/2272 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:06 GMT Etag: - - '"0x8DE6E860723ECA6"' + - '"0x8DE966DD8F6E46F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:06 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d464e2-c01e-0031-256e-a09036000000 + - f6131fca-501e-00d9-3656-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 206 Partial Content code: 206 - duration: 72.31825ms - - id: 54 + duration: 45.031417ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -6666,7 +14453,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6677,12 +14464,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6690,7 +14477,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 2272 uncompressed: false body: "" headers: @@ -6701,37 +14488,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2271" + - "2272" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:06 GMT Etag: - - '"0x8DE6E860723ECA6"' + - '"0x8DE966DD8F6E46F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:06 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d46521-c01e-0031-5b6e-a09036000000 + - f613200b-501e-00d9-6d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.176721ms - - id: 55 + duration: 46.771667ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -6739,7 +14526,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6750,12 +14537,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6763,7 +14550,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 2272 uncompressed: false body: "" headers: @@ -6774,37 +14561,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2271" + - "2272" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:26 GMT + - Thu, 09 Apr 2026 19:26:07 GMT Etag: - - '"0x8DE6E860723ECA6"' + - '"0x8DE966DD8F6E46F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:06 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4685d-c01e-0031-486e-a09036000000 + - f6132386-501e-00d9-5956-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.023104ms - - id: 56 + duration: 44.881667ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -6812,7 +14599,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6823,12 +14610,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -6836,7 +14623,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 2445 uncompressed: false body: "" headers: @@ -6847,37 +14634,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2271" + - "2445" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:27 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Etag: - - '"0x8DE6E860723ECA6"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:25 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d46b72-c01e-0031-6e6e-a09036000000 + - f61326d5-501e-00d9-3e56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.270132ms - - id: 57 + duration: 44.1385ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -6885,7 +14672,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6893,25 +14680,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=2272-2444 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2570 + content_length: 173 uncompressed: false - body: "" + body: " ---> 0d673811d89b\nStep 5/6 : EXPOSE 3000\n ---> Running in 889cb4aa95b6\nRemoving intermediate container 889cb4aa95b6\n ---> f60cf5283a73\nStep 6/6 : CMD [\"node\", \"index.js\"]\r\n" headers: Accept-Ranges: - bytes @@ -6920,37 +14711,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2570" + - "173" + Content-Range: + - bytes 2272-2444/2445 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:29 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Etag: - - '"0x8DE6E8608BC221D"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:28 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d46e01-c01e-0031-3d6e-a09036000000 + - f613271f-501e-00d9-7856-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 71.054607ms - - id: 58 + status: 206 Partial Content + code: 206 + duration: 46.971125ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -6958,7 +14751,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6966,29 +14759,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=2271-2569 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 299 + content_length: 2445 uncompressed: false - body: " ---> d70f3b4dec6c\nStep 5/6 : EXPOSE 3000\n ---> Running in 9f69ab131405\nRemoving intermediate container 9f69ab131405\n ---> 320262b4224a\nStep 6/6 : CMD [\"node\", \"index.js\"]\n ---> Running in 0fefa57d73a9\nRemoving intermediate container 0fefa57d73a9\n ---> d69a5cd280db\nSuccessfully built d69a5cd280db\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -6997,39 +14786,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "299" - Content-Range: - - bytes 2271-2569/2570 + - "2445" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:29 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Etag: - - '"0x8DE6E8608BC221D"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:28 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d46e41-c01e-0031-766e-a09036000000 + - f6132753-501e-00d9-2556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 71.119915ms - - id: 59 + status: 200 OK + code: 200 + duration: 43.368042ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -7037,7 +14824,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7048,12 +14835,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7061,7 +14848,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2570 + content_length: 2445 uncompressed: false body: "" headers: @@ -7072,37 +14859,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2570" + - "2445" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:29 GMT + - Thu, 09 Apr 2026 19:26:10 GMT Etag: - - '"0x8DE6E8608BC221D"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:28 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d46e70-c01e-0031-226e-a09036000000 + - f6132b31-501e-00d9-5e56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 73.124441ms - - id: 60 + duration: 40.383292ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -7110,7 +14897,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7121,12 +14908,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7134,7 +14921,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2570 + content_length: 2445 uncompressed: false body: "" headers: @@ -7145,37 +14932,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2570" + - "2445" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:30 GMT + - Thu, 09 Apr 2026 19:26:11 GMT Etag: - - '"0x8DE6E8608BC221D"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:28 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d47173-c01e-0031-586e-a09036000000 + - f6132f47-501e-00d9-5956-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.263831ms - - id: 61 + duration: 44.335458ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -7183,7 +14970,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7194,12 +14981,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7207,7 +14994,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2570 + content_length: 2445 uncompressed: false body: "" headers: @@ -7218,37 +15005,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2570" + - "2445" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:31 GMT + - Thu, 09 Apr 2026 19:26:12 GMT Etag: - - '"0x8DE6E8608BC221D"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:28 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d47463-c01e-0031-7e6e-a09036000000 + - f61332cf-501e-00d9-3d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 75.287084ms - - id: 62 + duration: 41.08375ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -7256,7 +15043,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7267,12 +15054,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7280,7 +15067,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2570 + content_length: 2445 uncompressed: false body: "" headers: @@ -7291,37 +15078,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2570" + - "2445" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:32 GMT + - Thu, 09 Apr 2026 19:26:13 GMT Etag: - - '"0x8DE6E8608BC221D"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:28 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d47718-c01e-0031-676e-a09036000000 + - f613367b-501e-00d9-0456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.366513ms - - id: 63 + duration: 45.145334ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -7329,7 +15116,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7340,12 +15127,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7353,7 +15140,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2570 + content_length: 2445 uncompressed: false body: "" headers: @@ -7364,37 +15151,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2570" + - "2445" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:33 GMT + - Thu, 09 Apr 2026 19:26:14 GMT Etag: - - '"0x8DE6E8608BC221D"' + - '"0x8DE966DDA41202F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:28 GMT + - Thu, 09 Apr 2026 19:26:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4799d-c01e-0031-226e-a09036000000 + - f6133981-501e-00d9-7956-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.910549ms - - id: 64 + duration: 40.177959ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -7402,7 +15189,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7413,12 +15200,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7426,7 +15213,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -7437,37 +15224,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:15 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d47bfa-c01e-0031-3f6e-a09036000000 + - f6133d19-501e-00d9-6756-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.891548ms - - id: 65 + duration: 47.328333ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -7475,7 +15262,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7488,14 +15275,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Range: - - bytes=2570-3474 + - bytes=2445-3475 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: GET response: proto: HTTP/1.1 @@ -7503,9 +15290,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 905 + content_length: 1031 uncompressed: false - body: "Successfully tagged acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26:azd-deploy-1771374846\n2026/02/18 00:38:28 Successfully executed container: build\n2026/02/18 00:38:28 Executing step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2026/02/18 00:38:28 Pushing image: acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26:azd-deploy-1771374846, attempt 1\nThe push refers to repository [acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26]\n452600b176d3: Preparing\n60628a6819c5: Preparing\n7bdf2109692b: Preparing\nad164066235a: Preparing\nd101d84285ff: Preparing\n42cb6bc954fa: Preparing\nd6deb73d761d: Preparing\nc30c607c78a2: Preparing\nccd5d83d9cc8: Preparing\n68aa828f1d1b: Preparing\n51e78f04fd47: Preparing\nd6deb73d761d: Waiting\nc30c607c78a2: Waiting\nccd5d83d9cc8: Waiting\n68aa828f1d1b: Waiting\n51e78f04fd47: Waiting\n42cb6bc954fa: Waiting\n60628a6819c5: Pushed\nad164066235a: Pushed\r\n" + body: " ---> Running in 0016dd967126\nRemoving intermediate container 0016dd967126\n ---> a223596b6848\nSuccessfully built a223596b6848\nSuccessfully tagged acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f:azd-deploy-1775762551\n2026/04/09 19:26:10 Successfully executed container: build\n2026/04/09 19:26:10 Executing step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2026/04/09 19:26:10 Pushing image: acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f:azd-deploy-1775762551, attempt 1\nThe push refers to repository [acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f]\ncbf9f2bf32a6: Preparing\nb5e152facbec: Preparing\ne1ccdd908b6b: Preparing\n0a783b6524cb: Preparing\n94d2e4abb17b: Preparing\n53706f581c76: Preparing\na682613f18c4: Preparing\n74d5fa8a944e: Preparing\n343e053d61dd: Preparing\n986cbc3b49c0: Preparing\neaa7304345ff: Preparing\n53706f581c76: Waiting\na682613f18c4: Waiting\n74d5fa8a944e: Waiting\n343e053d61dd: Waiting\n986cbc3b49c0: Waiting\neaa7304345ff: Waiting\nb5e152facbec: Pushed\ne1ccdd908b6b: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -7514,39 +15301,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "905" + - "1031" Content-Range: - - bytes 2570-3474/3475 + - bytes 2445-3475/3476 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:15 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d47c28-c01e-0031-656e-a09036000000 + - f6133d43-501e-00d9-0856-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 206 Partial Content code: 206 - duration: 71.789048ms - - id: 66 + duration: 44.713125ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -7554,7 +15341,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7565,12 +15352,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7578,7 +15365,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -7589,37 +15376,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:15 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d47c58-c01e-0031-0e6e-a09036000000 + - f6133d8d-501e-00d9-4156-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.793236ms - - id: 67 + duration: 58.3315ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -7627,7 +15414,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7638,12 +15425,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7651,7 +15438,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -7662,37 +15449,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:35 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d47fab-c01e-0031-2f6e-a09036000000 + - f613410d-501e-00d9-3656-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.447121ms - - id: 68 + duration: 51.041541ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -7700,7 +15487,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7711,12 +15498,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7724,7 +15511,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -7735,37 +15522,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:36 GMT + - Thu, 09 Apr 2026 19:26:17 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d48244-c01e-0031-7e6e-a09036000000 + - f6134425-501e-00d9-4956-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.318395ms - - id: 69 + duration: 41.84575ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -7773,7 +15560,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7784,12 +15571,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7797,7 +15584,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -7808,37 +15595,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:38 GMT + - Thu, 09 Apr 2026 19:26:18 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d48490-c01e-0031-056e-a09036000000 + - f61347b3-501e-00d9-5156-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.211795ms - - id: 70 + duration: 42.287208ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -7846,7 +15633,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7857,12 +15644,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7870,7 +15657,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -7881,37 +15668,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:39 GMT + - Thu, 09 Apr 2026 19:26:19 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d486d9-c01e-0031-036e-a09036000000 + - f6134af0-501e-00d9-6e56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.220484ms - - id: 71 + duration: 48.162125ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -7919,7 +15706,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7930,12 +15717,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -7943,7 +15730,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -7954,37 +15741,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:40 GMT + - Thu, 09 Apr 2026 19:26:20 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d489a5-c01e-0031-056e-a09036000000 + - f6134e7d-501e-00d9-6056-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 73.781015ms - - id: 72 + duration: 46.21375ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -7992,7 +15779,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8003,12 +15790,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8016,7 +15803,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -8027,37 +15814,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:41 GMT + - Thu, 09 Apr 2026 19:26:21 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d48cbf-c01e-0031-4e6e-a09036000000 + - f6135277-501e-00d9-3456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.390261ms - - id: 73 + duration: 48.53925ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -8065,7 +15852,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8076,12 +15863,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8089,7 +15876,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -8100,37 +15887,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:42 GMT + - Thu, 09 Apr 2026 19:26:22 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d48fd6-c01e-0031-1b6e-a09036000000 + - f61355f4-501e-00d9-4256-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.00712ms - - id: 74 + duration: 43.5265ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -8138,7 +15925,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8149,12 +15936,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8162,7 +15949,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -8173,37 +15960,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:43 GMT + - Thu, 09 Apr 2026 19:26:24 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d492b3-c01e-0031-276e-a09036000000 + - f61359ad-501e-00d9-5656-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 73.668803ms - - id: 75 + duration: 40.293542ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -8211,7 +15998,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8222,12 +16009,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8235,7 +16022,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3475 + content_length: 3476 uncompressed: false body: "" headers: @@ -8246,37 +16033,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3475" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:44 GMT + - Thu, 09 Apr 2026 19:26:25 GMT Etag: - - '"0x8DE6E860C4938CD"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:34 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d495c1-c01e-0031-6c6e-a09036000000 + - f6135d29-501e-00d9-2f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.820001ms - - id: 76 + duration: 43.806417ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -8284,7 +16071,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8295,12 +16082,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8308,7 +16095,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3476 uncompressed: false body: "" headers: @@ -8319,15 +16106,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3476" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:26 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DDE6FB21A"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:16 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -8335,21 +16122,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d498bc-c01e-0031-186e-a09036000000 + - f6136092-501e-00d9-0556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.693088ms - - id: 77 + duration: 41.138ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -8357,7 +16144,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8365,29 +16152,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=3475-3580 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 106 + content_length: 3562 uncompressed: false - body: "7bdf2109692b: Pushed\nd101d84285ff: Pushed\n452600b176d3: Pushed\nd6deb73d761d: Pushed\n68aa828f1d1b: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -8396,39 +16179,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "106" - Content-Range: - - bytes 3475-3580/3581 + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d498e6-c01e-0031-3f6e-a09036000000 + - f61363dd-501e-00d9-4356-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 73.113944ms - - id: 78 + status: 200 OK + code: 200 + duration: 41.329209ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -8436,7 +16217,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8444,25 +16225,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=3476-3561 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 86 uncompressed: false - body: "" + body: "0a783b6524cb: Pushed\ncbf9f2bf32a6: Pushed\n94d2e4abb17b: Pushed\na682613f18c4: Pushed\n\r\n" headers: Accept-Ranges: - bytes @@ -8471,37 +16256,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "86" + Content-Range: + - bytes 3476-3561/3562 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4990f-c01e-0031-646e-a09036000000 + - f613640e-501e-00d9-6d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 71.717596ms - - id: 79 + status: 206 Partial Content + code: 206 + duration: 44.914166ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -8509,7 +16296,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8520,12 +16307,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8533,7 +16320,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3562 uncompressed: false body: "" headers: @@ -8544,37 +16331,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:46 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d49c2b-c01e-0031-146e-a09036000000 + - f6136444-501e-00d9-1d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.766996ms - - id: 80 + duration: 51.18725ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -8582,7 +16369,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8593,12 +16380,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8606,7 +16393,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3562 uncompressed: false body: "" headers: @@ -8617,37 +16404,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:47 GMT + - Thu, 09 Apr 2026 19:26:28 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d49ed8-c01e-0031-776e-a09036000000 + - f61367be-501e-00d9-5556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.968317ms - - id: 81 + duration: 41.150167ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -8655,7 +16442,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8666,12 +16453,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8679,7 +16466,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3562 uncompressed: false body: "" headers: @@ -8690,37 +16477,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:48 GMT + - Thu, 09 Apr 2026 19:26:29 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4a17a-c01e-0031-536e-a09036000000 + - f6136d63-501e-00d9-0a56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.193195ms - - id: 82 + duration: 41.274125ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -8728,7 +16515,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8739,12 +16526,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8752,7 +16539,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3562 uncompressed: false body: "" headers: @@ -8763,37 +16550,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:50 GMT + - Thu, 09 Apr 2026 19:26:30 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4a42f-c01e-0031-3c6e-a09036000000 + - f6137483-501e-00d9-8056-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.932378ms - - id: 83 + duration: 42.330667ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -8801,7 +16588,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8812,12 +16599,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8825,7 +16612,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3562 uncompressed: false body: "" headers: @@ -8836,37 +16623,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:51 GMT + - Thu, 09 Apr 2026 19:26:31 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4a6e7-c01e-0031-2c6e-a09036000000 + - f6137ac6-501e-00d9-6b56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 74.521769ms - - id: 84 + duration: 44.216125ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -8874,7 +16661,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8885,12 +16672,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8898,7 +16685,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3562 uncompressed: false body: "" headers: @@ -8909,37 +16696,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:52 GMT + - Thu, 09 Apr 2026 19:26:32 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4a9f1-c01e-0031-6a6e-a09036000000 + - f61381ed-501e-00d9-2f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.658434ms - - id: 85 + duration: 45.346417ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -8947,7 +16734,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -8958,12 +16745,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -8971,7 +16758,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3581 + content_length: 3562 uncompressed: false body: "" headers: @@ -8982,37 +16769,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3581" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:53 GMT + - Thu, 09 Apr 2026 19:26:33 GMT Etag: - - '"0x8DE6E8612E24472"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:45 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4ad3d-c01e-0031-056e-a09036000000 + - f6138960-501e-00d9-0f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.736256ms - - id: 86 + duration: 43.029792ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -9020,7 +16807,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9031,12 +16818,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9044,7 +16831,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3562 uncompressed: false body: "" headers: @@ -9055,15 +16842,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:34 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -9071,21 +16858,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4b04e-c01e-0031-4c6e-a09036000000 + - f6139105-501e-00d9-5456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.2446ms - - id: 87 + duration: 42.265792ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -9093,7 +16880,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9101,29 +16888,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=3581-3602 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 3562 uncompressed: false - body: "51e78f04fd47: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -9132,17 +16915,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "22" - Content-Range: - - bytes 3581-3602/3603 + - "3562" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:35 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DE52EF49B"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:27 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -9150,21 +16931,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4b095-c01e-0031-0d6e-a09036000000 + - f6139842-501e-00d9-3a56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 72.524244ms - - id: 88 + status: 200 OK + code: 200 + duration: 40.103791ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -9172,7 +16953,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9183,12 +16964,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9196,7 +16977,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3585 uncompressed: false body: "" headers: @@ -9207,37 +16988,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3585" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:36 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DEB26508F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4b0d1-c01e-0031-486e-a09036000000 + - f613a164-501e-00d9-3756-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.478527ms - - id: 89 + duration: 41.477083ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -9245,7 +17026,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9253,25 +17034,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=3562-3584 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 23 uncompressed: false - body: "" + body: "986cbc3b49c0: Pushed\n\r\n" headers: Accept-Ranges: - bytes @@ -9280,37 +17065,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "23" + Content-Range: + - bytes 3562-3584/3585 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:55 GMT + - Thu, 09 Apr 2026 19:26:36 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DEB26508F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4b3ce-c01e-0031-706e-a09036000000 + - f613a1da-501e-00d9-6856-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 71.408118ms - - id: 90 + status: 206 Partial Content + code: 206 + duration: 70.799917ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -9318,7 +17105,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9329,12 +17116,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9342,7 +17129,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3585 uncompressed: false body: "" headers: @@ -9353,37 +17140,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3585" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:56 GMT + - Thu, 09 Apr 2026 19:26:36 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DEB26508F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4b65f-c01e-0031-3e6e-a09036000000 + - f613a27e-501e-00d9-2c56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.568767ms - - id: 91 + duration: 44.874042ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -9391,7 +17178,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9402,12 +17189,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9415,7 +17202,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3585 uncompressed: false body: "" headers: @@ -9426,37 +17213,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3585" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:57 GMT + - Thu, 09 Apr 2026 19:26:37 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DEB26508F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4b854-c01e-0031-626e-a09036000000 + - f613ac1b-501e-00d9-5f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.484958ms - - id: 92 + duration: 41.09775ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -9464,7 +17251,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9475,12 +17262,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9488,7 +17275,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3585 uncompressed: false body: "" headers: @@ -9499,37 +17286,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3585" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:58 GMT + - Thu, 09 Apr 2026 19:26:39 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DEB26508F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4ba92-c01e-0031-5b6e-a09036000000 + - f613b3eb-501e-00d9-7b56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.287636ms - - id: 93 + duration: 46.152208ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -9537,7 +17324,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9548,12 +17335,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9561,7 +17348,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3585 uncompressed: false body: "" headers: @@ -9572,37 +17359,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3585" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:38:59 GMT + - Thu, 09 Apr 2026 19:26:40 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DEB26508F"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4bd87-c01e-0031-5d6e-a09036000000 + - f613b8e4-501e-00d9-0f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.79668ms - - id: 94 + duration: 43.060125ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -9610,7 +17397,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9621,12 +17408,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9634,7 +17421,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -9645,37 +17432,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:01 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4c0b7-c01e-0031-386e-a09036000000 + - f613bd88-501e-00d9-2c56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.651364ms - - id: 95 + duration: 53.704708ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -9683,7 +17470,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9691,25 +17478,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=3585-3606 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 22 uncompressed: false - body: "" + body: "53706f581c76: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -9718,37 +17509,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "22" + Content-Range: + - bytes 3585-3606/3607 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:02 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4c3b6-c01e-0031-6b6e-a09036000000 + - f613bdbf-501e-00d9-5556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 71.620473ms - - id: 96 + status: 206 Partial Content + code: 206 + duration: 51.334625ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -9756,7 +17549,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9767,12 +17560,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9780,7 +17573,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -9791,37 +17584,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:03 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4c648-c01e-0031-356e-a09036000000 + - f613bdfc-501e-00d9-0256-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 72.176936ms - - id: 97 + duration: 43.231625ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -9829,7 +17622,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9840,12 +17633,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9853,7 +17646,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -9864,37 +17657,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:04 GMT + - Thu, 09 Apr 2026 19:26:42 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4c919-c01e-0031-336e-a09036000000 + - f613c2d0-501e-00d9-0a56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.248114ms - - id: 98 + duration: 45.599125ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -9902,7 +17695,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9913,12 +17706,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9926,7 +17719,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -9937,37 +17730,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:05 GMT + - Thu, 09 Apr 2026 19:26:43 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4cc01-c01e-0031-4e6e-a09036000000 + - f613c8bf-501e-00d9-2156-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.228012ms - - id: 99 + duration: 46.788625ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -9975,7 +17768,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -9986,12 +17779,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -9999,7 +17792,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -10010,37 +17803,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:06 GMT + - Thu, 09 Apr 2026 19:26:44 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4cf01-c01e-0031-236e-a09036000000 + - f613ccf8-501e-00d9-0756-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.265216ms - - id: 100 + duration: 43.398333ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -10048,7 +17841,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10059,12 +17852,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10072,7 +17865,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -10083,37 +17876,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:07 GMT + - Thu, 09 Apr 2026 19:26:45 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4d12f-c01e-0031-096e-a09036000000 + - f613d10d-501e-00d9-6656-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.520744ms - - id: 101 + duration: 43.046833ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -10121,7 +17914,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10132,12 +17925,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10145,7 +17938,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -10156,37 +17949,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:08 GMT + - Thu, 09 Apr 2026 19:26:46 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4d378-c01e-0031-066e-a09036000000 + - f613d588-501e-00d9-2856-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.060894ms - - id: 102 + duration: 50.21025ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -10194,7 +17987,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10205,12 +17998,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10218,7 +18011,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -10229,37 +18022,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:09 GMT + - Thu, 09 Apr 2026 19:26:47 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4d5ab-c01e-0031-666e-a09036000000 + - f613d9bf-501e-00d9-3256-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.413632ms - - id: 103 + duration: 45.383167ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -10267,7 +18060,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10278,12 +18071,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10291,7 +18084,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -10302,37 +18095,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:10 GMT + - Thu, 09 Apr 2026 19:26:48 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4d7c6-c01e-0031-436e-a09036000000 + - f613ddc5-501e-00d9-1d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.795866ms - - id: 104 + duration: 43.589666ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -10340,7 +18133,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10351,12 +18144,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10364,7 +18157,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -10375,37 +18168,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:11 GMT + - Thu, 09 Apr 2026 19:26:49 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4da0b-c01e-0031-3e6f-a09036000000 + - f613e134-501e-00d9-0456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.148103ms - - id: 105 + duration: 51.400292ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -10413,7 +18206,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10424,12 +18217,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10437,7 +18230,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3603 + content_length: 3607 uncompressed: false body: "" headers: @@ -10448,37 +18241,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3603" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:12 GMT + - Thu, 09 Apr 2026 19:26:50 GMT Etag: - - '"0x8DE6E86183C47FC"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:38:54 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4dcf3-c01e-0031-376f-a09036000000 + - f613e505-501e-00d9-3256-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.817871ms - - id: 106 + duration: 45.065083ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -10486,7 +18279,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10497,12 +18290,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10510,7 +18303,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3647 + content_length: 3607 uncompressed: false body: "" headers: @@ -10521,37 +18314,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3647" + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:13 GMT + - Thu, 09 Apr 2026 19:26:51 GMT Etag: - - '"0x8DE6E8623D19B0C"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:39:13 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4df6a-c01e-0031-536f-a09036000000 + - f613e841-501e-00d9-5256-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 71.007085ms - - id: 107 + duration: 44.847958ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -10559,7 +18352,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10567,29 +18360,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=3603-3646 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 3607 uncompressed: false - body: "ccd5d83d9cc8: Pushed\n42cb6bc954fa: Pushed\n\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -10598,39 +18387,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "44" - Content-Range: - - bytes 3603-3646/3647 + - "3607" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:14 GMT + - Thu, 09 Apr 2026 19:26:52 GMT Etag: - - '"0x8DE6E8623D19B0C"' + - '"0x8DE966DED902C44"' Last-Modified: - - Wed, 18 Feb 2026 00:39:13 GMT + - Thu, 09 Apr 2026 19:26:41 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4dfac-c01e-0031-076f-a09036000000 + - f613eb5c-501e-00d9-6556-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 72.537002ms - - id: 108 + status: 200 OK + code: 200 + duration: 45.75375ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -10638,7 +18425,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10649,12 +18436,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10662,7 +18449,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3647 + content_length: 3671 uncompressed: false body: "" headers: @@ -10673,37 +18460,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3647" + - "3671" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:14 GMT + - Thu, 09 Apr 2026 19:26:54 GMT Etag: - - '"0x8DE6E8623D19B0C"' + - '"0x8DE966DF4DF158A"' Last-Modified: - - Wed, 18 Feb 2026 00:39:13 GMT + - Thu, 09 Apr 2026 19:26:53 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "16" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4dfe5-c01e-0031-3c6f-a09036000000 + - f613eefd-501e-00d9-6456-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 73.528677ms - - id: 109 + duration: 44.286917ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -10711,7 +18498,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10719,25 +18506,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=3607-3670 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3647 + content_length: 64 uncompressed: false - body: "" + body: "eaa7304345ff: Pushed\n343e053d61dd: Pushed\n74d5fa8a944e: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -10746,37 +18537,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3647" + - "64" + Content-Range: + - bytes 3607-3670/3671 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:15 GMT + - Thu, 09 Apr 2026 19:26:54 GMT Etag: - - '"0x8DE6E8623D19B0C"' + - '"0x8DE966DF4DF158A"' Last-Modified: - - Wed, 18 Feb 2026 00:39:13 GMT + - Thu, 09 Apr 2026 19:26:53 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "16" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4e247-c01e-0031-476f-a09036000000 + - f613ef32-501e-00d9-0d56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 71.243103ms - - id: 110 + status: 206 Partial Content + code: 206 + duration: 44.672792ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -10784,7 +18577,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10795,12 +18588,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10808,7 +18601,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3669 + content_length: 3671 uncompressed: false body: "" headers: @@ -10819,37 +18612,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3669" + - "3671" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:16 GMT + - Thu, 09 Apr 2026 19:26:54 GMT Etag: - - '"0x8DE6E862503B979"' + - '"0x8DE966DF4DF158A"' Last-Modified: - - Wed, 18 Feb 2026 00:39:15 GMT + - Thu, 09 Apr 2026 19:26:53 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "15" + - "16" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4e48a-c01e-0031-516f-a09036000000 + - f613ef60-501e-00d9-3356-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.838572ms - - id: 111 + duration: 45.810542ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -10857,7 +18650,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10865,29 +18658,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=3647-3668 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: GET + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 3671 uncompressed: false - body: "c30c607c78a2: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -10896,39 +18685,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "22" - Content-Range: - - bytes 3647-3668/3669 + - "3671" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:16 GMT + - Thu, 09 Apr 2026 19:26:55 GMT Etag: - - '"0x8DE6E862503B979"' + - '"0x8DE966DF4DF158A"' Last-Modified: - - Wed, 18 Feb 2026 00:39:15 GMT + - Thu, 09 Apr 2026 19:26:53 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "15" + - "16" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 66d4e4bb-c01e-0031-776f-a09036000000 + - f613f28b-501e-00d9-4f56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 72.020062ms - - id: 112 + status: 200 OK + code: 200 + duration: 42.305458ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -10936,7 +18723,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -10947,12 +18734,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -10960,7 +18747,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3669 + content_length: 4754 uncompressed: false body: "" headers: @@ -10971,37 +18758,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3669" + - "4754" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:16 GMT + - Thu, 09 Apr 2026 19:26:56 GMT Etag: - - '"0x8DE6E862503B979"' + - '"0x8DE966DF6360485"' Last-Modified: - - Wed, 18 Feb 2026 00:39:15 GMT + - Thu, 09 Apr 2026 19:26:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "15" + - "18" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked + X-Ms-Meta-Complete: + - successful X-Ms-Request-Id: - - 66d4e4f0-c01e-0031-236f-a09036000000 + - f613f621-501e-00d9-5756-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.894576ms - - id: 113 + duration: 40.240125ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -11009,7 +18798,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -11017,25 +18806,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Range: + - bytes=3671-4753 X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3669 + content_length: 1083 uncompressed: false - body: "" + body: "azd-deploy-1775762551: digest: sha256:ea143625fa49e45284dbb7eb4a68cd84ad36b18e78036012e6054749a7c22004 size: 2624\n2026/04/09 19:26:54 Successfully pushed image: acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f:azd-deploy-1775762551\n2026/04/09 19:26:54 Step ID: build marked as successful (elapsed time in seconds: 41.371653)\n2026/04/09 19:26:54 Populating digests for step ID: build...\n2026/04/09 19:26:55 Successfully populated digests for step ID: build\n2026/04/09 19:26:55 Step ID: push marked as successful (elapsed time in seconds: 44.505042)\n2026/04/09 19:26:55 The following dependencies were found:\n2026/04/09 19:26:55 \n- image:\n registry: acrw7djqs5ah3wpg.azurecr.io\n repository: webapp/app-azdtest-d23239f\n tag: azd-deploy-1775762551\n digest: sha256:ea143625fa49e45284dbb7eb4a68cd84ad36b18e78036012e6054749a7c22004\n runtime-dependency:\n registry: registry.hub.docker.com\n repository: library/node\n tag: \"22\"\n digest: sha256:ecabd1cb6956d7acfffe8af6bbfbe2df42362269fd28c227f36367213d0bb777\n git: {}\n\n\r\nRun ID: ch1 was successful after 1m30s\r\n" headers: Accept-Ranges: - bytes @@ -11044,37 +18837,41 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3669" + - "1083" + Content-Range: + - bytes 3671-4753/4754 Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:17 GMT + - Thu, 09 Apr 2026 19:26:56 GMT Etag: - - '"0x8DE6E862503B979"' + - '"0x8DE966DF6360485"' Last-Modified: - - Wed, 18 Feb 2026 00:39:15 GMT + - Thu, 09 Apr 2026 19:26:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "15" + - "18" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked + X-Ms-Meta-Complete: + - successful X-Ms-Request-Id: - - 66d4e757-c01e-0031-436f-a09036000000 + - f613f648-501e-00d9-7b56-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" - status: 200 OK - code: 200 - duration: 71.079591ms - - id: 114 + status: 206 Partial Content + code: 206 + duration: 42.872292ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -11082,7 +18879,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: acrtaskprodeus2063.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -11093,12 +18890,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Version: - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + url: https://acrtaskprodeus2063.blob.core.windows.net:443/container-3d7330a33f6447ddb60cb23b97ca6927/logs/ch1/rawtext.log?se=2026-04-09T20%3A35%3A26Z&sig=SANITIZED&ske=2026-04-16T19%3A25%3A25Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-04-09T19%3A20%3A25Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 method: HEAD response: proto: HTTP/1.1 @@ -11106,7 +18903,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 4751 + content_length: 4754 uncompressed: false body: "" headers: @@ -11117,23 +18914,23 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "4751" + - "4754" Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:18 GMT + - Thu, 09 Apr 2026 19:26:56 GMT Etag: - - '"0x8DE6E86266B5191"' + - '"0x8DE966DF6360485"' Last-Modified: - - Wed, 18 Feb 2026 00:39:18 GMT + - Thu, 09 Apr 2026 19:26:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "17" + - "18" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT + - Thu, 09 Apr 2026 19:25:26 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: @@ -11141,15 +18938,15 @@ interactions: X-Ms-Meta-Complete: - successful X-Ms-Request-Id: - - 66d4ea52-c01e-0031-646f-a09036000000 + - f613f68c-501e-00d9-3656-c85887000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2025-11-05" status: 200 OK code: 200 - duration: 70.996785ms - - id: 115 + duration: 44.797292ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -11157,80 +18954,70 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: management.azure.com remote_addr: "" request_uri: "" body: "" form: {} headers: Accept: - - application/xml + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armcontainerregistry/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Range: - - bytes=3669-4750 - X-Ms-Version: - - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/runs/ch1?api-version=2019-06-01-preview 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: 1082 + content_length: 987 uncompressed: false - body: "azd-deploy-1771374846: digest: sha256:ff3511427e2a0a11e117f4ba76545bde75042f1adfb1c43dfd4b48d359a266c6 size: 2624\n2026/02/18 00:39:17 Successfully pushed image: acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26:azd-deploy-1771374846\n2026/02/18 00:39:17 Step ID: build marked as successful (elapsed time in seconds: 23.420539)\n2026/02/18 00:39:17 Populating digests for step ID: build...\n2026/02/18 00:39:18 Successfully populated digests for step ID: build\n2026/02/18 00:39:18 Step ID: push marked as successful (elapsed time in seconds: 48.501159)\n2026/02/18 00:39:18 The following dependencies were found:\n2026/02/18 00:39:18 \n- image:\n registry: acrxvttwt2sqmqis.azurecr.io\n repository: webapp/app-azdtest-l2ebf26\n tag: azd-deploy-1771374846\n digest: sha256:ff3511427e2a0a11e117f4ba76545bde75042f1adfb1c43dfd4b48d359a266c6\n runtime-dependency:\n registry: registry.hub.docker.com\n repository: library/node\n tag: \"22\"\n digest: sha256:379c51ac7bbf9bffe16769cfda3eb027d59d9c66ac314383da3fcf71b46d026c\n git: {}\n\r\nRun ID: ch1 was successful after 1m15s\r\n" + body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Succeeded","lastUpdatedTime":"2026-04-09T19:26:56+00:00","runType":"QuickRun","createTime":"2026-04-09T19:25:25.9666297+00:00","startTime":"2026-04-09T19:25:26.2245047+00:00","finishTime":"2026-04-09T19:26:56.7430347+00:00","outputImages":[{"registry":"acrw7djqs5ah3wpg.azurecr.io","repository":"webapp/app-azdtest-d23239f","tag":"azd-deploy-1775762551","digest":"sha256:ea143625fa49e45284dbb7eb4a68cd84ad36b18e78036012e6054749a7c22004"}],"platform":{"os":"Linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:25:25.8478982+00:00"}}' headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 + Cache-Control: + - no-cache Content-Length: - - "1082" - Content-Range: - - bytes 3669-4750/4751 + - "987" Content-Type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:18 GMT - Etag: - - '"0x8DE6E86266B5191"' - Last-Modified: - - Wed, 18 Feb 2026 00:39:18 GMT - Server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - X-Ms-Blob-Committed-Block-Count: - - "17" - X-Ms-Blob-Type: - - AppendBlob - X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Meta-Complete: - - successful + - Thu, 09 Apr 2026 19:26:57 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/594bc1ca-ef91-4e3c-b2ed-bef3da09ee58 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 66d4ea7d-c01e-0031-086f-a09036000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2025-11-05" - status: 206 Partial Content - code: 206 - duration: 71.847249ms - - id: 116 + - 657880c6-d932-4c00-a205-16bd5fdb9695 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192657Z:bab1d335-4f3a-45f1-b986-2db59c71ffd2 + X-Msedge-Ref: + - 'Ref A: 309C317A73014FC5A87D38766A474A7B Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:26:57Z' + status: 200 OK + code: 200 + duration: 520.0315ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -11238,74 +19025,68 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: acrtaskprodeus2050.blob.core.windows.net + host: management.azure.com remote_addr: "" request_uri: "" body: "" form: {} headers: Accept: - - application/xml + - application/json + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.6.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Version: - - "2025-11-05" - url: https://acrtaskprodeus2050.blob.core.windows.net:443/container-64494fec737d456ca96209ce52a9efa8/logs/ch1/rawtext.log?se=2026-02-18T01%3A48%3A03Z&sig=SANITIZED&ske=2026-02-25T00%3A38%3A02Z&skoid=54ea2226-b787-4507-912e-75de6df49d1d&sks=b&skt=2026-02-18T00%3A33%3A02Z&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skv=2024-11-04&sp=r&sr=b&sv=2024-11-04 - method: HEAD + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d23239f%27&api-version=2021-04-01 + 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: 4751 + content_length: 325 uncompressed: false - body: "" + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","name":"rg-azdtest-d23239f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","DeleteAfter":"2026-04-09T20:22:51Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 + Cache-Control: + - no-cache Content-Length: - - "4751" + - "325" Content-Type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:18 GMT - Etag: - - '"0x8DE6E86266B5191"' - Last-Modified: - - Wed, 18 Feb 2026 00:39:18 GMT - Server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - X-Ms-Blob-Committed-Block-Count: - - "17" - X-Ms-Blob-Type: - - AppendBlob - X-Ms-Creation-Time: - - Wed, 18 Feb 2026 00:38:03 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Meta-Complete: - - successful + - Thu, 09 Apr 2026 19:26:57 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 66d4eaad-c01e-0031-326f-a09036000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2025-11-05" + - e91dd0fa-e82c-4cd2-84bb-5659eb26236b + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192657Z:e91dd0fa-e82c-4cd2-84bb-5659eb26236b + X-Msedge-Ref: + - 'Ref A: 4D0DA9E143BB4F0FA9EBBB1650E24416 Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:26:57Z' status: 200 OK code: 200 - duration: 70.797469ms - - id: 117 + duration: 151.308958ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -11326,10 +19107,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armcontainerregistry/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/runs/ch1?api-version=2019-06-01-preview + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27app%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -11337,18 +19118,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 991 + content_length: 670 uncompressed: false - body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Succeeded","lastUpdatedTime":"2026-02-18T00:39:18+00:00","runType":"QuickRun","createTime":"2026-02-18T00:38:02.7069341+00:00","startTime":"2026-02-18T00:38:02.9664331+00:00","finishTime":"2026-02-18T00:39:18.9698835+00:00","outputImages":[{"registry":"acrxvttwt2sqmqis.azurecr.io","repository":"webapp/app-azdtest-l2ebf26","tag":"azd-deploy-1771374846","digest":"sha256:ff3511427e2a0a11e117f4ba76545bde75042f1adfb1c43dfd4b48d359a266c6"}],"platform":{"os":"Linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:38:02.5838224+00:00"}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg","name":"app-w7djqs5ah3wpg","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c","clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca"}}},"tags":{"azd-service-name":"app","azd-env-name":"azdtest-d23239f"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "991" + - "670" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:18 GMT + - Thu, 09 Apr 2026 19:26:57 GMT Expires: - "-1" Pragma: @@ -11360,23 +19141,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/4dc5f853-0a62-4e63-a2e7-57e15e782965 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - eb665bb2-0b7c-450a-97aa-da7656cc0ce3 + - 197a0749-a3b4-49fe-88e3-7cbce2a64a4c X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003919Z:1220c4a0-2056-4baf-9cdd-bc582bbb8cb9 + - EASTUS2:20260409T192658Z:197a0749-a3b4-49fe-88e3-7cbce2a64a4c X-Msedge-Ref: - - 'Ref A: 310EE900CD0B4EFBA3B70D9F9BDB79C4 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:19Z' + - 'Ref A: 0DBCABF207044CCDA53A214E9C9A6D2E Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:26:57Z' status: 200 OK code: 200 - duration: 120.725556ms - - id: 118 + duration: 297.56475ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -11397,10 +19176,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armappcontainers/v3.1.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l2ebf26%27&api-version=2021-04-01 + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg?api-version=2025-01-01 method: GET response: proto: HTTP/2.0 @@ -11408,68 +19187,153 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 5068 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26","name":"rg-azdtest-l2ebf26","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","DeleteAfter":"2026-02-18T01:34:21Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerapps/app-w7djqs5ah3wpg","name":"app-w7djqs5ah3wpg","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-d23239f","azd-service-name":"app"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:24:53.9848511","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:24:53.9848511"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","environmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","20.75.24.112","20.36.255.10","20.10.96.162","20.10.77.30","20.22.59.25","20.94.21.158","20.96.95.82","20.80.208.249","20.186.165.206","4.150.106.135","4.153.178.159","20.10.117.247","48.211.244.39","135.18.202.95","20.96.232.164","20.10.115.21","132.196.179.37","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","4.153.23.173","68.220.200.37","20.22.76.62","20.22.133.225","20.97.149.136","20.85.54.118","20.22.84.80","20.15.28.155","135.224.218.66","132.196.159.79","172.193.41.130","52.167.25.168","132.196.164.34","20.94.2.95","20.75.97.208","135.224.208.235","20.75.109.7","20.22.64.248","20.62.39.9","20.85.16.209","20.22.16.179","20.75.127.1","20.75.67.92","20.1.251.122","4.153.151.187","135.224.209.109","20.75.1.111","20.1.226.146","20.7.80.26","20.75.99.67","20.10.90.46","20.75.104.174","40.70.153.121","20.186.184.95","68.220.235.57","135.224.130.211"],"latestRevisionName":"app-w7djqs5ah3wpg--5zj2t4y","latestReadyRevisionName":"app-w7djqs5ah3wpg--5zj2t4y","latestRevisionFqdn":"app-w7djqs5ah3wpg--5zj2t4y.wittyhill-8a009f22.eastus2.azurecontainerapps.io","customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acrw7djqs5ah3wpg.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"nginx","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/containerApps/app-w7djqs5ah3wpg/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c","clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview Cache-Control: - no-cache Content-Length: - - "325" + - "5068" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:18 GMT + - Thu, 09 Apr 2026 19:26:57 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 88d9ef8f-f755-4334-91a9-7b6162d9f69c + - d84b8bc1-ef2b-49bc-8b3b-da38800becad X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003919Z:88d9ef8f-f755-4334-91a9-7b6162d9f69c + - EASTUS2:20260409T192658Z:d84b8bc1-ef2b-49bc-8b3b-da38800becad X-Msedge-Ref: - - 'Ref A: DA68C43357C24BCBAA7B021A96DEA771 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:19Z' + - 'Ref A: E7E0464AE3224109ABAB43ED0BCCA3D6 Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:26:58Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 101.733516ms - - id: 119 + duration: 165.570958ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4816 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerapps/app-w7djqs5ah3wpg","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca","principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c"}}},"location":"East US 2","name":"app-w7djqs5ah3wpg","properties":{"configuration":{"activeRevisionsMode":"Single","identitySettings":[],"ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io","targetPort":8080,"traffic":[{"latestRevision":true,"weight":100}],"transport":"Http"},"maxInactiveRevisions":100,"registries":[{"identity":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg","passwordSecretRef":"","server":"acrw7djqs5ah3wpg.azurecr.io","username":""}]},"customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","environmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/containerApps/app-w7djqs5ah3wpg/eventstream","latestReadyRevisionName":"app-w7djqs5ah3wpg--5zj2t4y","latestRevisionFqdn":"app-w7djqs5ah3wpg--5zj2t4y.wittyhill-8a009f22.eastus2.azurecontainerapps.io","latestRevisionName":"app-w7djqs5ah3wpg--5zj2t4y","managedEnvironmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","20.75.24.112","20.36.255.10","20.10.96.162","20.10.77.30","20.22.59.25","20.94.21.158","20.96.95.82","20.80.208.249","20.186.165.206","4.150.106.135","4.153.178.159","20.10.117.247","48.211.244.39","135.18.202.95","20.96.232.164","20.10.115.21","132.196.179.37","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","4.153.23.173","68.220.200.37","20.22.76.62","20.22.133.225","20.97.149.136","20.85.54.118","20.22.84.80","20.15.28.155","135.224.218.66","132.196.159.79","172.193.41.130","52.167.25.168","132.196.164.34","20.94.2.95","20.75.97.208","135.224.208.235","20.75.109.7","20.22.64.248","20.62.39.9","20.85.16.209","20.22.16.179","20.75.127.1","20.75.67.92","20.1.251.122","4.153.151.187","135.224.209.109","20.75.1.111","20.1.226.146","20.7.80.26","20.75.99.67","20.10.90.46","20.75.104.174","40.70.153.121","20.186.184.95","68.220.235.57","135.224.130.211"],"provisioningState":"Succeeded","runningStatus":"Running","template":{"containers":[{"image":"acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f:azd-deploy-1775762551","name":"app","resources":{"cpu":0.5,"ephemeralStorage":"2Gi","memory":"1Gi"}}],"revisionSuffix":"azd-1775762551","scale":{"cooldownPeriod":300,"maxReplicas":10,"minReplicas":1,"pollingInterval":30}},"workloadProfileName":"consumption"},"systemData":{"createdAt":"2026-04-09T19:24:53.9848511Z","createdBy":"shboyer@microsoft.com","createdByType":"User","lastModifiedAt":"2026-04-09T19:24:53.9848511Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-d23239f","azd-service-name":"app"},"type":"Microsoft.App/containerApps"}' form: {} headers: Accept: - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4816" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armappcontainers/v3.1.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg?api-version=2025-01-01 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d60d7ae5-68d2-4766-b2c2-5cbdb48dfcd3?api-version=2025-01-01&azureAsyncOperation=true&t=639113596192054611&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=v0uRYYj0lzoJXTQlp_Cc_qw8BsnVUhXkAaNQ14A-CPRbgNOQkvo6b1szESVIKkK23PnLOUUmtUwF-0akIoHk1g5FzhLC3PZ_gY6R2aHe3kWDWB_racmcBXXJd-6fhW9QppdnIWRhRZ1IEehUwNJSNos9LcMHZqImsr7UDvhDsSFL6HuenXNPKRR7W0ztAZ7vPocV9H32uFgpYMPxbmBzgudd-7P9zt8d2KhKOwdka7UOlIuhYrU_DQEmfq1Vn_7HGpjD5uYuAXQzRLjD7gj6FO-QGgPcp_cBZPnbNuWKv-pJBjQyQaCupbGtcDII8nkDOgQXhqrHHSNOvyYkhB7DNA&h=ZvwDC65-6LVPEt9FDkSN97r61rDntDQnuBcbAzArrpM + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 19:26:58 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.App/locations/eastus2/containerappOperationResults/d60d7ae5-68d2-4766-b2c2-5cbdb48dfcd3?api-version=2025-01-01&t=639113596192054611&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=aAgeBCEcy9THRWPBDP1UENiF3Wyzd4fGQWTbqDnCEe9dty8JqJH18rZ8kDXOazbga7TQ0Lsvqi1dvMlXQ8NPHXtc-B36Xkgl65WQ_Apfhdl_L_x893zAQIFQzcwCDX3cve7WaHo1bV_CfkMvHHkxonP2C0Idt8CeL9JRjaBNFSM7AzXP9dooHkS8uMW-3wKWgyWiosFhcOsyuozOwA3_R9hBsoENcweCV8klymR5c8kCil45qX6CldpGUN3KzKRMD1_aHrZdu9KU4MvAlEoTgumSSnLHTRp-Atm4_Kat5j3Ynalk7PRPSH3dNuNHl9X-EHqAn0axbUYqLED0ARGB7Q&h=OlrPvZVMBagTjejV1eMExuxFANKnMINsr61PiSLoyNM + Pragma: + - no-cache + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/609d53f3-3ee3-429d-8d76-2f85de6c33e2 + X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: + - "199" + X-Ms-Request-Id: + - 7cf30f9e-c745-43df-b35b-2701b3c0bc25 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192659Z:7cf30f9e-c745-43df-b35b-2701b3c0bc25 + X-Msedge-Ref: + - 'Ref A: 9074BE70A4E1480CA22A384F57919F9D Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:26:58Z' + X-Powered-By: + - ASP.NET + status: 202 Accepted + code: 202 + duration: 862.211417ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armappcontainers/v3.1.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27app%27&api-version=2021-04-01 + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d60d7ae5-68d2-4766-b2c2-5cbdb48dfcd3?api-version=2025-01-01&azureAsyncOperation=true&t=639113596192054611&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=v0uRYYj0lzoJXTQlp_Cc_qw8BsnVUhXkAaNQ14A-CPRbgNOQkvo6b1szESVIKkK23PnLOUUmtUwF-0akIoHk1g5FzhLC3PZ_gY6R2aHe3kWDWB_racmcBXXJd-6fhW9QppdnIWRhRZ1IEehUwNJSNos9LcMHZqImsr7UDvhDsSFL6HuenXNPKRR7W0ztAZ7vPocV9H32uFgpYMPxbmBzgudd-7P9zt8d2KhKOwdka7UOlIuhYrU_DQEmfq1Vn_7HGpjD5uYuAXQzRLjD7gj6FO-QGgPcp_cBZPnbNuWKv-pJBjQyQaCupbGtcDII8nkDOgQXhqrHHSNOvyYkhB7DNA&h=ZvwDC65-6LVPEt9FDkSN97r61rDntDQnuBcbAzArrpM method: GET response: proto: HTTP/2.0 @@ -11477,44 +19341,52 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 670 + content_length: 278 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis","name":"app-xvttwt2sqmqis","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793","clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347"}}},"tags":{"azd-service-name":"app","azd-env-name":"azdtest-l2ebf26"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d60d7ae5-68d2-4766-b2c2-5cbdb48dfcd3","name":"d60d7ae5-68d2-4766-b2c2-5cbdb48dfcd3","status":"Succeeded","startTime":"2026-04-09T19:26:59.1757553"}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview Cache-Control: - no-cache Content-Length: - - "670" + - "278" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:19 GMT + - Thu, 09 Apr 2026 19:27:13 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/8a863ef1-19ba-4665-a361-c24ee2b4b765 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - d15a065e-50f4-4734-a138-83d99ae38b20 + - d8be714a-e6c8-4d66-80ff-f6a8633e2f90 X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003919Z:d15a065e-50f4-4734-a138-83d99ae38b20 + - EASTUS:20260409T192714Z:d8be714a-e6c8-4d66-80ff-f6a8633e2f90 X-Msedge-Ref: - - 'Ref A: 168A16BC4ADF470F9577AB1C33E43D6E Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:19Z' + - 'Ref A: 9EA28A0562734E9EA055917473D98DCB Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:27:14Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 186.84187ms - - id: 120 + duration: 187.240917ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -11528,17 +19400,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armappcontainers/v3.1.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis?api-version=2025-01-01 + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg?api-version=2025-01-01 method: GET response: proto: HTTP/2.0 @@ -11546,20 +19416,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4483 + content_length: 5167 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerapps/app-xvttwt2sqmqis","name":"app-xvttwt2sqmqis","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-service-name":"app"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:37:16.2109811","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:37:16.2109811"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","environmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","workloadProfileName":"consumption","outboundIpAddresses":["130.213.251.138","68.220.200.118","172.175.128.181","172.193.48.200","68.220.140.24","68.220.243.140","20.161.90.45","20.15.73.80","172.193.33.53","48.214.4.169","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","13.68.118.203","20.75.24.112","20.36.255.10","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.7.215.68"],"latestRevisionName":"app-xvttwt2sqmqis--98tljln","latestReadyRevisionName":"app-xvttwt2sqmqis--98tljln","latestRevisionFqdn":"app-xvttwt2sqmqis--98tljln.calmriver-06247d77.eastus2.azurecontainerapps.io","customDomainVerificationId":"66B450D1C01C0DBF95CCAFD98F73407E29EE110F23977426F6B4A678E0B25E27","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acrxvttwt2sqmqis.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"nginx","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/containerApps/app-xvttwt2sqmqis/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793","clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347"}}}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerapps/app-w7djqs5ah3wpg","name":"app-w7djqs5ah3wpg","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-d23239f","azd-service-name":"app"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:24:53.9848511","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:26:58.6117124"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","environmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","20.75.24.112","20.36.255.10","20.10.96.162","20.10.77.30","20.22.59.25","20.94.21.158","20.96.95.82","20.80.208.249","20.186.165.206","4.150.106.135","4.153.178.159","20.10.117.247","48.211.244.39","135.18.202.95","20.96.232.164","20.10.115.21","132.196.179.37","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","4.153.23.173","68.220.200.37","20.22.76.62","20.22.133.225","20.97.149.136","20.85.54.118","20.22.84.80","20.15.28.155","135.224.218.66","132.196.159.79","172.193.41.130","52.167.25.168","132.196.164.34","20.94.2.95","20.75.97.208","135.224.208.235","20.75.109.7","20.22.64.248","20.62.39.9","20.85.16.209","20.22.16.179","20.75.127.1","20.75.67.92","20.1.251.122","4.153.151.187","135.224.209.109","20.75.1.111","20.1.226.146","20.7.80.26","20.75.99.67","20.10.90.46","20.75.104.174","40.70.153.121","20.186.184.95","68.220.235.57","135.224.130.211"],"latestRevisionName":"app-w7djqs5ah3wpg--azd-1775762551","latestReadyRevisionName":"app-w7djqs5ah3wpg--5zj2t4y","latestRevisionFqdn":"app-w7djqs5ah3wpg--azd-1775762551.wittyhill-8a009f22.eastus2.azurecontainerapps.io","customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acrw7djqs5ah3wpg.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"azd-1775762551","terminationGracePeriodSeconds":null,"containers":[{"image":"acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f:azd-deploy-1775762551","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/containerApps/app-w7djqs5ah3wpg/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c","clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca"}}}}' headers: Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview Cache-Control: - no-cache Content-Length: - - "4483" + - "5167" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:19 GMT + - Thu, 09 Apr 2026 19:27:14 GMT Expires: - "-1" Pragma: @@ -11573,23 +19443,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - c58e4658-004c-4b62-9ccf-2991b2244b84 + - 3212b0e8-3a8d-4449-8cc1-875f442f378e X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003920Z:c58e4658-004c-4b62-9ccf-2991b2244b84 + - EASTUS2:20260409T192714Z:3212b0e8-3a8d-4449-8cc1-875f442f378e X-Msedge-Ref: - - 'Ref A: ED0B463D39F34741AAED59BF0B9AF3D1 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:19Z' + - 'Ref A: 6084253B17E947A9856240AE782F5803 Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:27:14Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 431.922357ms - - id: 121 + duration: 124.066458ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -11610,10 +19480,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armappcontainers/v3.1.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis/revisions/app-xvttwt2sqmqis--98tljln?api-version=2025-01-01 + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg?api-version=2025-01-01 method: GET response: proto: HTTP/2.0 @@ -11621,20 +19491,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 871 + content_length: 5167 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis/revisions/app-xvttwt2sqmqis--98tljln","name":"app-xvttwt2sqmqis--98tljln","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2026-02-18T00:37:25+00:00","fqdn":"app-xvttwt2sqmqis--98tljln.calmriver-06247d77.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"nginx","name":"app","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerapps/app-w7djqs5ah3wpg","name":"app-w7djqs5ah3wpg","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-d23239f","azd-service-name":"app"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:24:53.9848511","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:26:58.6117124"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","environmentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","20.75.24.112","20.36.255.10","20.10.96.162","20.10.77.30","20.22.59.25","20.94.21.158","20.96.95.82","20.80.208.249","20.186.165.206","4.150.106.135","4.153.178.159","20.10.117.247","48.211.244.39","135.18.202.95","20.96.232.164","20.10.115.21","132.196.179.37","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","4.153.23.173","68.220.200.37","20.22.76.62","20.22.133.225","20.97.149.136","20.85.54.118","20.22.84.80","20.15.28.155","135.224.218.66","132.196.159.79","172.193.41.130","52.167.25.168","132.196.164.34","20.94.2.95","20.75.97.208","135.224.208.235","20.75.109.7","20.22.64.248","20.62.39.9","20.85.16.209","20.22.16.179","20.75.127.1","20.75.67.92","20.1.251.122","4.153.151.187","135.224.209.109","20.75.1.111","20.1.226.146","20.7.80.26","20.75.99.67","20.10.90.46","20.75.104.174","40.70.153.121","20.186.184.95","68.220.235.57","135.224.130.211"],"latestRevisionName":"app-w7djqs5ah3wpg--azd-1775762551","latestReadyRevisionName":"app-w7djqs5ah3wpg--5zj2t4y","latestRevisionFqdn":"app-w7djqs5ah3wpg--azd-1775762551.wittyhill-8a009f22.eastus2.azurecontainerapps.io","customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acrw7djqs5ah3wpg.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"azd-1775762551","terminationGracePeriodSeconds":null,"containers":[{"image":"acrw7djqs5ah3wpg.azurecr.io/webapp/app-azdtest-d23239f:azd-deploy-1775762551","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/containerApps/app-w7djqs5ah3wpg/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c","clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca"}}}}' headers: Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview Cache-Control: - no-cache Content-Length: - - "871" + - "5167" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:20 GMT + - Thu, 09 Apr 2026 19:27:14 GMT Expires: - "-1" Pragma: @@ -11648,36 +19518,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/b7efa25c-c952-4042-9fb5-52f019d88906 + - 48231690e6cbd5e87998c96bc5b7ee9f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 0df518c6-8f22-45d5-a0cf-62785e23751e + - f2a4244f-40f7-4550-83a0-795e0f2de5c1 X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003920Z:0df518c6-8f22-45d5-a0cf-62785e23751e + - EASTUS2:20260409T192714Z:f2a4244f-40f7-4550-83a0-795e0f2de5c1 X-Msedge-Ref: - - 'Ref A: 888F7530075747DDB03E98AA88BD1A32 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:20Z' + - 'Ref A: CD8B0E6ADBC14ECB882F5353614E1B9F Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:27:14Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 814.877749ms - - id: 122 + duration: 98.941333ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4176 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerapps/app-xvttwt2sqmqis","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347","principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793"}}},"location":"East US 2","name":"app-xvttwt2sqmqis","properties":{"configuration":{"activeRevisionsMode":"Single","identitySettings":[],"ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io","targetPort":8080,"traffic":[{"latestRevision":true,"weight":100}],"transport":"Http"},"maxInactiveRevisions":100,"registries":[{"identity":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis","passwordSecretRef":"","server":"acrxvttwt2sqmqis.azurecr.io","username":""}]},"customDomainVerificationId":"66B450D1C01C0DBF95CCAFD98F73407E29EE110F23977426F6B4A678E0B25E27","environmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/containerApps/app-xvttwt2sqmqis/eventstream","latestReadyRevisionName":"app-xvttwt2sqmqis--98tljln","latestRevisionFqdn":"app-xvttwt2sqmqis--98tljln.calmriver-06247d77.eastus2.azurecontainerapps.io","latestRevisionName":"app-xvttwt2sqmqis--98tljln","managedEnvironmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","outboundIpAddresses":["130.213.251.138","68.220.200.118","172.175.128.181","172.193.48.200","68.220.140.24","68.220.243.140","20.161.90.45","20.15.73.80","172.193.33.53","48.214.4.169","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","13.68.118.203","20.75.24.112","20.36.255.10","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.7.215.68"],"provisioningState":"Succeeded","runningStatus":"Running","template":{"containers":[{"image":"acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26:azd-deploy-1771374846","name":"app","probes":[],"resources":{"cpu":0.5,"memory":"1Gi"}}],"revisionSuffix":"azd-1771374846","scale":{"maxReplicas":10,"minReplicas":1}},"workloadProfileName":"consumption"},"systemData":{"createdAt":"2026-02-18T00:37:16.2109811Z","createdBy":"jeffreychen@microsoft.com","createdByType":"User","lastModifiedAt":"2026-02-18T00:37:16.2109811Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-l2ebf26","azd-service-name":"app"},"type":"Microsoft.App/containerApps"}' + body: "" form: {} headers: Accept: @@ -11686,44 +19554,34 @@ interactions: - gzip Authorization: - SANITIZED - Content-Length: - - "4176" - Content-Type: - - application/json User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis?api-version=2025-01-01 - method: PATCH + - 48231690e6cbd5e87998c96bc5b7ee9f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d23239f%27&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 325 uncompressed: false - body: "" + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","name":"rg-azdtest-d23239f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","DeleteAfter":"2026-04-09T20:22:51Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f8fc5c94-b77b-44bc-b15c-04b2f0f138e1?api-version=2025-01-01&azureAsyncOperation=true&t=639069719617109204&c=MIIIrzCCBpegAwIBAgITUQHtApBbJIIjEO8RJgABAe0CkDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjYwMjA2MDYwMzM1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMaw34c60D5THswgIBf_WJOuv_MqG0nroresd-wEXrikLY6HXufjfc-EtuWFHU4YuXqGMQo4ViYnOc0JDdh3A8dq9ME8-rHJcU_ld10g9e2G5oHI4dDbXWlbpwdkpZ3xFPiw9FILolD2_W3KTgYK6OeA3dROHDhQHvl4DGDogqSJ5Y2HihoYdp08BPSJ1LBbg0VBsUMJVTV1fhd4iLSIt15z6X9Vo_rRyqo9bcbSHoOQZQrwb6cM-SIfZEiBVCxJlPVfj-nZF62BUS03sybYWi-zey7xvPqS2abdCixjIRYkGu6tzZO8Srw6T2WHSKPMibG-IHb-VOigrXgHmTQxyWkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQU2OPi8h57u1yW5KIVT9dZyisfvBQwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAiEOtd9XAjCfrIDUgZVpZOdyt1za4mSUHmu5tyJM2fgVejW0VJgIxlaDcFkI9W6IyJB-TCcjy53zBWr9-j26Ca6tigUq3DfiW9iXh4bU2BuTNvtfhg_xaio3bHfpAGBIq-OW6T79l8WoFQsvgGmxKYsb75lPAagoSt1wb9z9GgdoJiLYR4fi_QU7ollV3_MQGaw2mTkT9kqUkxtKs08dwXpJwWkSAjWLpB-jpYhD2giXwiqb7FLYuhxhtcd2jc1z0KBSOh7DsLfi-xbozekPgX3pcab0JYYpSRUGfmJrtX6khGdGTxPlaHwPRzGQqxilBuzgyGXNvxmQKlFNgF4MXUvuJU3GbpdGX6SZlNcKLUCYMXc4ai-CMlXQMlfqHw8Any1Z_14wFvZO8vQrO-VWg5QfLp8_9CoSancKdGmmRPRSVoP6PL8yrb2jK2lELe33ynvXbYRnkZh86aISsM_tzq_Rcnv_q5h1RPe2ISHfs6xJJzAa7xNnpt8eiPvb_PTnCt2qGHIIQQPNBUpYO8f3-uciXB0_wzq-xBsZ59ijXyY7m8-Odj_GZ2qLSqJ21DfSUUGtdXEYHqTiHVFLMNvFGa83ytokrBUh8LiEOyVx6jxpUKNBU3Q7H4Af71VWzQXDvB3BL_9uXD6CMcPJiSJuniu7i__iQvPfSewhUXqcurCw&s=dfJcPPlKcALa9SHC1iKKfZTgDxWNLeQlsD60szctC4axMp972t5wQtat0PaYiLH__n3sF3dED3JlnzZtbbzfWSJSO1A20rlUYlyGBxElzL1KOU1ocppO0KzwSYUW45DBJKROB07LaJVthN-XHoC2NmpL1JI1YKOSfWiOPd1aUWCfK9hs4gU4AoWYukPq4c52Ghva_mUqFzN7eUZ9456w60NV-nSTlRTor7EB5aQzN_bmaTNd9Q5ZVNKT6W2jPkyFpGYfytDBC6B-VfPGtlcgXI60HKjOTuYTo5jEHjOUdAJ1-UPlNIS2htEZy7SiX-9je6vwRfz200V4TIOS9IfJLA&h=sXPQolMySrg9H5MlcolKlrofPYyA1sKxhh8dkGICU50 Cache-Control: - no-cache Content-Length: - - "0" + - "325" + Content-Type: + - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:21 GMT + - Thu, 09 Apr 2026 19:27:14 GMT Expires: - "-1" - Location: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.App/locations/eastus2/containerappOperationResults/f8fc5c94-b77b-44bc-b15c-04b2f0f138e1?api-version=2025-01-01&t=639069719617109204&c=MIIIrzCCBpegAwIBAgITUQHtApBbJIIjEO8RJgABAe0CkDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjYwMjA2MDYwMzM1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMaw34c60D5THswgIBf_WJOuv_MqG0nroresd-wEXrikLY6HXufjfc-EtuWFHU4YuXqGMQo4ViYnOc0JDdh3A8dq9ME8-rHJcU_ld10g9e2G5oHI4dDbXWlbpwdkpZ3xFPiw9FILolD2_W3KTgYK6OeA3dROHDhQHvl4DGDogqSJ5Y2HihoYdp08BPSJ1LBbg0VBsUMJVTV1fhd4iLSIt15z6X9Vo_rRyqo9bcbSHoOQZQrwb6cM-SIfZEiBVCxJlPVfj-nZF62BUS03sybYWi-zey7xvPqS2abdCixjIRYkGu6tzZO8Srw6T2WHSKPMibG-IHb-VOigrXgHmTQxyWkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQU2OPi8h57u1yW5KIVT9dZyisfvBQwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAiEOtd9XAjCfrIDUgZVpZOdyt1za4mSUHmu5tyJM2fgVejW0VJgIxlaDcFkI9W6IyJB-TCcjy53zBWr9-j26Ca6tigUq3DfiW9iXh4bU2BuTNvtfhg_xaio3bHfpAGBIq-OW6T79l8WoFQsvgGmxKYsb75lPAagoSt1wb9z9GgdoJiLYR4fi_QU7ollV3_MQGaw2mTkT9kqUkxtKs08dwXpJwWkSAjWLpB-jpYhD2giXwiqb7FLYuhxhtcd2jc1z0KBSOh7DsLfi-xbozekPgX3pcab0JYYpSRUGfmJrtX6khGdGTxPlaHwPRzGQqxilBuzgyGXNvxmQKlFNgF4MXUvuJU3GbpdGX6SZlNcKLUCYMXc4ai-CMlXQMlfqHw8Any1Z_14wFvZO8vQrO-VWg5QfLp8_9CoSancKdGmmRPRSVoP6PL8yrb2jK2lELe33ynvXbYRnkZh86aISsM_tzq_Rcnv_q5h1RPe2ISHfs6xJJzAa7xNnpt8eiPvb_PTnCt2qGHIIQQPNBUpYO8f3-uciXB0_wzq-xBsZ59ijXyY7m8-Odj_GZ2qLSqJ21DfSUUGtdXEYHqTiHVFLMNvFGa83ytokrBUh8LiEOyVx6jxpUKNBU3Q7H4Af71VWzQXDvB3BL_9uXD6CMcPJiSJuniu7i__iQvPfSewhUXqcurCw&s=kfRTlZa57aVhVuUr_4HtttL0atDDmh0iGttHoN9ClUNHqjGrbiZMuzX5IdyRoEUCSJre8FZXe0urw-9ao4sOsET7c1kjRU12ZhC2S7to_k-KtXtozmuRHBN8GIjEE1MAiP_u1W1hPqWaxDX4xrxF5LfeKhrO6mJ_meG9pq8k3r7oZjZmZynH7pvMimWdYNqaOpdX2MgQ2CLiRPpvkYkQYgeIts6o9U4jM3O_mzlpbjOhpXo_QEo2Prx8TbCLobZYa3JctDUzyAOlY3CTnLcbKrpFVT6pqsCtnEDevI8CmVLfZs4_5gk-2d_UKgvQNzMz36fveFK6BKwzOEj7aCpqIg&h=ns1zjS3XisUkpcfnxYGhDG6xbdUiLqa4TkfecLht6NM Pragma: - no-cache - Retry-After: - - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -11731,23 +19589,103 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/11de3705-063b-4211-b674-7df50626a305 - X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - - "799" + - 48231690e6cbd5e87998c96bc5b7ee9f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 988d1398-f991-4043-a5d0-e2f32737d25e + - d5edb294-4d1b-470d-8aa3-b34c6a8b5f0d X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003921Z:988d1398-f991-4043-a5d0-e2f32737d25e + - EASTUS:20260409T192715Z:d5edb294-4d1b-470d-8aa3-b34c6a8b5f0d X-Msedge-Ref: - - 'Ref A: 888A7458FA814F9982D7B836D4D36AEE Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:20Z' - X-Powered-By: - - ASP.NET - status: 202 Accepted - code: 202 - duration: 872.25513ms - - id: 123 + - 'Ref A: 736FCDBF350B48218B24CB5AFEE4DA48 Ref B: BN1AA2051013049 Ref C: 2026-04-09T19:27:14Z' + status: 200 OK + code: 200 + duration: 375.433375ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - Go-http-client/1.1 + url: https://app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io:443/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: stream timeout + headers: + Content-Length: + - "14" + Content-Type: + - text/plain + Date: + - Thu, 09 Apr 2026 19:31:15 GMT + status: 504 Gateway Timeout + code: 504 + duration: 4m0.209039208s + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - Go-http-client/1.1 + url: https://app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io:443/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 13 + uncompressed: false + body: Hello, `azd`. + headers: + Content-Length: + - "13" + Content-Type: + - text/plain + Date: + - Thu, 09 Apr 2026 19:31:15 GMT + status: 200 OK + code: 200 + duration: 52.111167ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -11761,15 +19699,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f8fc5c94-b77b-44bc-b15c-04b2f0f138e1?api-version=2025-01-01&azureAsyncOperation=true&t=639069719617109204&c=MIIIrzCCBpegAwIBAgITUQHtApBbJIIjEO8RJgABAe0CkDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjYwMjA2MDYwMzM1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMaw34c60D5THswgIBf_WJOuv_MqG0nroresd-wEXrikLY6HXufjfc-EtuWFHU4YuXqGMQo4ViYnOc0JDdh3A8dq9ME8-rHJcU_ld10g9e2G5oHI4dDbXWlbpwdkpZ3xFPiw9FILolD2_W3KTgYK6OeA3dROHDhQHvl4DGDogqSJ5Y2HihoYdp08BPSJ1LBbg0VBsUMJVTV1fhd4iLSIt15z6X9Vo_rRyqo9bcbSHoOQZQrwb6cM-SIfZEiBVCxJlPVfj-nZF62BUS03sybYWi-zey7xvPqS2abdCixjIRYkGu6tzZO8Srw6T2WHSKPMibG-IHb-VOigrXgHmTQxyWkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQU2OPi8h57u1yW5KIVT9dZyisfvBQwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAiEOtd9XAjCfrIDUgZVpZOdyt1za4mSUHmu5tyJM2fgVejW0VJgIxlaDcFkI9W6IyJB-TCcjy53zBWr9-j26Ca6tigUq3DfiW9iXh4bU2BuTNvtfhg_xaio3bHfpAGBIq-OW6T79l8WoFQsvgGmxKYsb75lPAagoSt1wb9z9GgdoJiLYR4fi_QU7ollV3_MQGaw2mTkT9kqUkxtKs08dwXpJwWkSAjWLpB-jpYhD2giXwiqb7FLYuhxhtcd2jc1z0KBSOh7DsLfi-xbozekPgX3pcab0JYYpSRUGfmJrtX6khGdGTxPlaHwPRzGQqxilBuzgyGXNvxmQKlFNgF4MXUvuJU3GbpdGX6SZlNcKLUCYMXc4ai-CMlXQMlfqHw8Any1Z_14wFvZO8vQrO-VWg5QfLp8_9CoSancKdGmmRPRSVoP6PL8yrb2jK2lELe33ynvXbYRnkZh86aISsM_tzq_Rcnv_q5h1RPe2ISHfs6xJJzAa7xNnpt8eiPvb_PTnCt2qGHIIQQPNBUpYO8f3-uciXB0_wzq-xBsZ59ijXyY7m8-Odj_GZ2qLSqJ21DfSUUGtdXEYHqTiHVFLMNvFGa83ytokrBUh8LiEOyVx6jxpUKNBU3Q7H4Af71VWzQXDvB3BL_9uXD6CMcPJiSJuniu7i__iQvPfSewhUXqcurCw&s=dfJcPPlKcALa9SHC1iKKfZTgDxWNLeQlsD60szctC4axMp972t5wQtat0PaYiLH__n3sF3dED3JlnzZtbbzfWSJSO1A20rlUYlyGBxElzL1KOU1ocppO0KzwSYUW45DBJKROB07LaJVthN-XHoC2NmpL1JI1YKOSfWiOPd1aUWCfK9hs4gU4AoWYukPq4c52Ghva_mUqFzN7eUZ9456w60NV-nSTlRTor7EB5aQzN_bmaTNd9Q5ZVNKT6W2jPkyFpGYfytDBC6B-VfPGtlcgXI60HKjOTuYTo5jEHjOUdAJ1-UPlNIS2htEZy7SiX-9je6vwRfz200V4TIOS9IfJLA&h=sXPQolMySrg9H5MlcolKlrofPYyA1sKxhh8dkGICU50 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -11777,52 +19717,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 278 + content_length: 960309 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f8fc5c94-b77b-44bc-b15c-04b2f0f138e1","name":"f8fc5c94-b77b-44bc-b15c-04b2f0f138e1","status":"Succeeded","startTime":"2026-02-18T00:39:21.6538966"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","location":"eastus2","name":"azdtest-d23239f-1775762551","properties":{"correlationId":"c4c3798f5563852ad2bca91fe5c3eaeb","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","resourceName":"rg-azdtest-d23239f","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT2M24.6587839S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/providers/Microsoft.Authorization/roleAssignments/9542945a-c127-55c4-be76-848f12751ae9"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrw7djqs5ah3wpg.azurecr.io"},"websitE_URL":{"type":"String","value":"https://app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io/"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-04-09T20:22:51Z"},"environmentName":{"type":"String","value":"azdtest-d23239f"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"3995333194191014458","timestamp":"2026-04-09T19:25:15.8926326Z"},"tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"},"type":"Microsoft.Resources/deployments"}]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 Cache-Control: - no-cache Content-Length: - - "278" + - "960309" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:36 GMT + - Thu, 09 Apr 2026 19:31:20 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/westus2/6ce72763-a45b-46f4-927e-2128f9059ee4 + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 98b3a04f-285a-4ae9-b7a0-006799270c74 + - c7307fd2-df78-4876-8411-441be555021f X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003937Z:98b3a04f-285a-4ae9-b7a0-006799270c74 + - EASTUS2:20260409T193120Z:c7307fd2-df78-4876-8411-441be555021f X-Msedge-Ref: - - 'Ref A: C65425042C15402A806BF4FA84E94B28 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:36Z' - X-Powered-By: - - ASP.NET + - 'Ref A: 981CDC6B38244D5F91299E7FFFA97854 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:18Z' status: 200 OK code: 200 - duration: 304.674879ms - - id: 124 + duration: 2.993978709s + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -11841,10 +19773,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis?api-version=2025-01-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -11852,50 +19784,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4594 + content_length: 898963 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerapps/app-xvttwt2sqmqis","name":"app-xvttwt2sqmqis","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-service-name":"app"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:37:16.2109811","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:39:21.2109081"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","environmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","workloadProfileName":"consumption","outboundIpAddresses":["130.213.251.138","68.220.200.118","172.175.128.181","172.193.48.200","68.220.140.24","68.220.243.140","20.161.90.45","20.15.73.80","172.193.33.53","48.214.4.169","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","13.68.118.203","20.75.24.112","20.36.255.10","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.7.215.68"],"latestRevisionName":"app-xvttwt2sqmqis--azd-1771374846","latestReadyRevisionName":"app-xvttwt2sqmqis--98tljln","latestRevisionFqdn":"app-xvttwt2sqmqis--azd-1771374846.calmriver-06247d77.eastus2.azurecontainerapps.io","customDomainVerificationId":"66B450D1C01C0DBF95CCAFD98F73407E29EE110F23977426F6B4A678E0B25E27","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acrxvttwt2sqmqis.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"azd-1771374846","terminationGracePeriodSeconds":null,"containers":[{"image":"acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26:azd-deploy-1771374846","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/containerApps/app-xvttwt2sqmqis/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793","clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347"}}}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 Cache-Control: - no-cache Content-Length: - - "4594" + - "898963" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:36 GMT + - Thu, 09 Apr 2026 19:31:24 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 39ad3e3a-789f-49a6-a551-3b0eafa05260 + - 99a5ff32-f685-4020-b0ac-d24bafc62b1f X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003937Z:39ad3e3a-789f-49a6-a551-3b0eafa05260 + - EASTUS2:20260409T193124Z:99a5ff32-f685-4020-b0ac-d24bafc62b1f X-Msedge-Ref: - - 'Ref A: BC9184191A73441E9C277CAE7BFAC672 Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:37Z' - X-Powered-By: - - ASP.NET + - 'Ref A: 6F1C8161C709473182EE33B6967D4BB9 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:21Z' status: 200 OK code: 200 - duration: 163.411236ms - - id: 125 + duration: 3.736984792s + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -11909,17 +19835,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.1.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis?api-version=2025-01-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -11927,50 +19851,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4594 + content_length: 515084 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerapps/app-xvttwt2sqmqis","name":"app-xvttwt2sqmqis","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-service-name":"app"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:37:16.2109811","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:39:21.2109081"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","environmentId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","workloadProfileName":"consumption","outboundIpAddresses":["130.213.251.138","68.220.200.118","172.175.128.181","172.193.48.200","68.220.140.24","68.220.243.140","20.161.90.45","20.15.73.80","172.193.33.53","48.214.4.169","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","4.153.75.54","172.193.97.218","68.220.18.20","172.193.72.214","20.161.102.207","130.213.148.50","68.220.243.198","20.22.147.169","20.122.241.246","20.72.121.157","13.68.118.203","20.75.24.112","20.36.255.10","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.7.215.68"],"latestRevisionName":"app-xvttwt2sqmqis--azd-1771374846","latestReadyRevisionName":"app-xvttwt2sqmqis--98tljln","latestRevisionFqdn":"app-xvttwt2sqmqis--azd-1771374846.calmriver-06247d77.eastus2.azurecontainerapps.io","customDomainVerificationId":"66B450D1C01C0DBF95CCAFD98F73407E29EE110F23977426F6B4A678E0B25E27","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acrxvttwt2sqmqis.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"azd-1771374846","terminationGracePeriodSeconds":null,"containers":[{"image":"acrxvttwt2sqmqis.azurecr.io/webapp/app-azdtest-l2ebf26:azd-deploy-1771374846","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/containerApps/app-xvttwt2sqmqis/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793","clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347"}}}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 Cache-Control: - no-cache Content-Length: - - "4594" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:36 GMT + - Thu, 09 Apr 2026 19:31:26 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 600495c4-08ea-42dd-82ef-479349e4e4a6 + - 249ebf22-b375-4ed6-ac0f-61bc0003e49a X-Ms-Routing-Request-Id: - - EASTUS2:20260218T003937Z:600495c4-08ea-42dd-82ef-479349e4e4a6 + - EASTUS2:20260409T193126Z:249ebf22-b375-4ed6-ac0f-61bc0003e49a X-Msedge-Ref: - - 'Ref A: 98CB4004492049C2A0EC99A79015587E Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:37Z' - X-Powered-By: - - ASP.NET + - 'Ref A: D01ECBB10C7E400BB23F5191811E7FE9 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:24Z' status: 200 OK code: 200 - duration: 148.63904ms - - id: 126 + duration: 1.457809833s + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -11984,17 +19902,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l2ebf26%27&api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -12002,18 +19918,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 415580 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26","name":"rg-azdtest-l2ebf26","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","DeleteAfter":"2026-02-18T01:34:21Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:39:36 GMT + - Thu, 09 Apr 2026 19:31:27 GMT Expires: - "-1" Pragma: @@ -12025,103 +19941,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0f02893c25c9e50283d2d0877d254872 + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - fe9b2134-123c-45f2-b665-a8560af78295 + - e1534a0e-9926-4a85-bc89-aca04f11cf18 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T003937Z:fe9b2134-123c-45f2-b665-a8560af78295 + - EASTUS:20260409T193127Z:e1534a0e-9926-4a85-bc89-aca04f11cf18 X-Msedge-Ref: - - 'Ref A: 5971D9B164D4437A92D7C744634C875B Ref B: CO6AA3150220037 Ref C: 2026-02-18T00:39:37Z' - status: 200 OK - code: 200 - duration: 87.083826ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io:443/ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14 - uncompressed: false - body: stream timeout - headers: - Content-Length: - - "14" - Content-Type: - - text/plain - Date: - - Wed, 18 Feb 2026 00:43:37 GMT - status: 504 Gateway Timeout - code: 504 - duration: 4m0.289517974s - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io:443/ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 13 - uncompressed: false - body: Hello, `azd`. - headers: - Content-Length: - - "13" - Content-Type: - - text/plain - Date: - - Wed, 18 Feb 2026 00:43:37 GMT + - 'Ref A: 7F309052D22A42948E4AF453E053DA54 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:26Z' status: 200 OK code: 200 - duration: 72.416959ms - - id: 129 + duration: 813.67375ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -12135,17 +19969,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -12153,18 +19985,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 123751 + content_length: 136970 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","location":"eastus2","name":"azdtest-l2ebf26-1771374846","properties":{"correlationId":"ae765b5ea6bdeeb9589a7ecc70ac1d72","dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26","resourceName":"rg-azdtest-l2ebf26","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT3M13.395129S","mode":"Incremental","outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/providers/Microsoft.Authorization/roleAssignments/96612637-69f1-58b1-9947-02c4af78682c"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrxvttwt2sqmqis.azurecr.io"},"websitE_URL":{"type":"String","value":"https://app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io/"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-02-18T01:34:21Z"},"environmentName":{"type":"String","value":"azdtest-l2ebf26"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"10898219461876186438","timestamp":"2026-02-18T00:37:35.2640026Z"},"tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "123751" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:43:43 GMT + - Thu, 09 Apr 2026 19:31:27 GMT Expires: - "-1" Pragma: @@ -12176,21 +20008,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 05376214-719e-4cc5-af9a-9b5842cc5dd7 + - 88de8f7e-e870-4598-8204-d3e011c91a8f X-Ms-Routing-Request-Id: - - WESTUS2:20260218T004344Z:05376214-719e-4cc5-af9a-9b5842cc5dd7 + - EASTUS:20260409T193127Z:88de8f7e-e870-4598-8204-d3e011c91a8f X-Msedge-Ref: - - 'Ref A: 18073CC63F6F46658E84778589C1CDB6 Ref B: MWH011020807054 Ref C: 2026-02-18T00:43:43Z' + - 'Ref A: B5902919C5514C3B8F4775EC9A607CE1 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:27Z' status: 200 OK code: 200 - duration: 1.22986979s - - id: 130 + duration: 577.719667ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -12211,10 +20043,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -12224,7 +20056,7 @@ interactions: trailer: {} content_length: 2804 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"},"properties":{"templateHash":"10898219461876186438","parameters":{"environmentName":{"type":"String","value":"azdtest-l2ebf26"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-18T01:34:21Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-18T00:37:35.2640026Z","duration":"PT3M13.395129S","correlationId":"ae765b5ea6bdeeb9589a7ecc70ac1d72","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-l2ebf26","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l2ebf26"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrxvttwt2sqmqis.azurecr.io"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/providers/Microsoft.Authorization/roleAssignments/96612637-69f1-58b1-9947-02c4af78682c"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"},"properties":{"templateHash":"3995333194191014458","parameters":{"environmentName":{"type":"String","value":"azdtest-d23239f"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:22:51Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:25:15.8926326Z","duration":"PT2M24.6587839S","correlationId":"c4c3798f5563852ad2bca91fe5c3eaeb","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d23239f"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrw7djqs5ah3wpg.azurecr.io"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/providers/Microsoft.Authorization/roleAssignments/9542945a-c127-55c4-be76-848f12751ae9"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg"}]}}' headers: Cache-Control: - no-cache @@ -12233,7 +20065,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:43:44 GMT + - Thu, 09 Apr 2026 19:31:28 GMT Expires: - "-1" Pragma: @@ -12245,21 +20077,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 98538ded-c94b-473a-87a5-1f44ea662057 + - 88edff90-0df1-4261-a9c5-ca404c3b8e3f X-Ms-Routing-Request-Id: - - WESTUS2:20260218T004344Z:98538ded-c94b-473a-87a5-1f44ea662057 + - EASTUS:20260409T193128Z:88edff90-0df1-4261-a9c5-ca404c3b8e3f X-Msedge-Ref: - - 'Ref A: 442275962B59410CBDBBF82132FBF47F Ref B: MWH011020807054 Ref C: 2026-02-18T00:43:44Z' + - 'Ref A: 7A145A988D5F40A8864076BB738AF764 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:28Z' status: 200 OK code: 200 - duration: 355.429439ms - - id: 131 + duration: 155.359125ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -12280,10 +20112,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/resources?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -12291,18 +20123,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2619 + content_length: 2595 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis","name":"mi-xvttwt2sqmqis","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis","name":"law-xvttwt2sqmqis","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis","name":"acrxvttwt2sqmqis","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:34:30.3976178Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:34:30.3976178Z"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","name":"cae-xvttwt2sqmqis","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:34:53.1104058Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:34:53.1104058Z"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis","name":"app-xvttwt2sqmqis","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793","clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347"}}},"tags":{"azd-env-name":"azdtest-l2ebf26","azd-service-name":"app"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:37:16.2109811Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:39:21.2109081Z"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg","name":"law-w7djqs5ah3wpg","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg","name":"mi-w7djqs5ah3wpg","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg","name":"acrw7djqs5ah3wpg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:22:53.8881212Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:22:53.8881212Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","name":"cae-w7djqs5ah3wpg","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:23:15.2657198Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:23:15.2657198Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg","name":"app-w7djqs5ah3wpg","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c","clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca"}}},"tags":{"azd-env-name":"azdtest-d23239f","azd-service-name":"app"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:24:53.9848511Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:26:58.6117124Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2619" + - "2595" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:43:44 GMT + - Thu, 09 Apr 2026 19:31:28 GMT Expires: - "-1" Pragma: @@ -12314,21 +20146,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 1ab2c6d3-dace-42de-a7b1-6c4002bb80bf + - 9e66b187-d042-49ba-a638-a73dfc894614 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T004344Z:1ab2c6d3-dace-42de-a7b1-6c4002bb80bf + - EASTUS2:20260409T193128Z:9e66b187-d042-49ba-a638-a73dfc894614 X-Msedge-Ref: - - 'Ref A: F5DBBBC270A242D99829F0B48A58E70D Ref B: MWH011020807054 Ref C: 2026-02-18T00:43:44Z' + - 'Ref A: 1979BA2D876842C095FC9C02B8C44454 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:28Z' status: 200 OK code: 200 - duration: 205.696316ms - - id: 132 + duration: 72.238709ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -12349,10 +20181,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armoperationalinsights/v2.0.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis?api-version=2025-07-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg?api-version=2025-07-01 method: GET response: proto: HTTP/2.0 @@ -12360,9 +20192,9 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 936 + content_length: 937 uncompressed: false - body: '{"properties":{"customerId":"eb58c130-b63a-4c78-8e4a-db3a70c27bac","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-02-18T00:34:30.4320089Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-02-18T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-02-18T00:34:30.4320089Z","modifiedDate":"2026-02-18T00:34:42.831323Z"},"location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"},"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis","name":"law-xvttwt2sqmqis","type":"Microsoft.OperationalInsights/workspaces","etag":"\"f90156a5-0000-0200-0000-699509220000\""}' + body: '{"properties":{"customerId":"6ca4545f-f132-45bf-ab94-3a192310b30d","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-04-09T19:22:53.8973681Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-04-09T20:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-04-09T19:22:53.8973681Z","modifiedDate":"2026-04-09T19:23:06.4609735Z"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg","name":"law-w7djqs5ah3wpg","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0b0205d9-0000-0200-0000-69d7fc9a0000\""}' headers: Access-Control-Allow-Origin: - '*' @@ -12371,11 +20203,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - "936" + - "937" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:43:44 GMT + - Thu, 09 Apr 2026 19:31:28 GMT Expires: - "-1" Pragma: @@ -12389,21 +20221,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 235cd02c-8875-4e06-806b-c4e01c39b66a + - 35a9513d-8e89-4d74-a6f4-520cadddab86 X-Ms-Routing-Request-Id: - - EASTUS2:20260218T004344Z:235cd02c-8875-4e06-806b-c4e01c39b66a + - EASTUS2:20260409T193128Z:35a9513d-8e89-4d74-a6f4-520cadddab86 X-Msedge-Ref: - - 'Ref A: 838CC5BE8EC2465E9C46C7F9DF55E404 Ref B: MWH011020807054 Ref C: 2026-02-18T00:43:44Z' + - 'Ref A: 22CF56630037452CACBEFDAA7BB65EAE Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:28Z' status: 200 OK code: 200 - duration: 112.514647ms - - id: 133 + duration: 99.743334ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -12424,10 +20256,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armoperationalinsights/v2.0.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis?api-version=2025-07-01&force=true + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg?api-version=2025-07-01&force=true method: DELETE response: proto: HTTP/2.0 @@ -12444,17 +20276,17 @@ interactions: Api-Supported-Versions: - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, 2025-07-01 Azure-Asyncoperation: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/4726bb24-67d1-4955-98a9-e82b4737ebc0?api-version=2015-11-01-preview&t=639069722251978637&c=MIIIrzCCBpegAwIBAgITUQHtApBbJIIjEO8RJgABAe0CkDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjYwMjA2MDYwMzM1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMaw34c60D5THswgIBf_WJOuv_MqG0nroresd-wEXrikLY6HXufjfc-EtuWFHU4YuXqGMQo4ViYnOc0JDdh3A8dq9ME8-rHJcU_ld10g9e2G5oHI4dDbXWlbpwdkpZ3xFPiw9FILolD2_W3KTgYK6OeA3dROHDhQHvl4DGDogqSJ5Y2HihoYdp08BPSJ1LBbg0VBsUMJVTV1fhd4iLSIt15z6X9Vo_rRyqo9bcbSHoOQZQrwb6cM-SIfZEiBVCxJlPVfj-nZF62BUS03sybYWi-zey7xvPqS2abdCixjIRYkGu6tzZO8Srw6T2WHSKPMibG-IHb-VOigrXgHmTQxyWkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQU2OPi8h57u1yW5KIVT9dZyisfvBQwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAiEOtd9XAjCfrIDUgZVpZOdyt1za4mSUHmu5tyJM2fgVejW0VJgIxlaDcFkI9W6IyJB-TCcjy53zBWr9-j26Ca6tigUq3DfiW9iXh4bU2BuTNvtfhg_xaio3bHfpAGBIq-OW6T79l8WoFQsvgGmxKYsb75lPAagoSt1wb9z9GgdoJiLYR4fi_QU7ollV3_MQGaw2mTkT9kqUkxtKs08dwXpJwWkSAjWLpB-jpYhD2giXwiqb7FLYuhxhtcd2jc1z0KBSOh7DsLfi-xbozekPgX3pcab0JYYpSRUGfmJrtX6khGdGTxPlaHwPRzGQqxilBuzgyGXNvxmQKlFNgF4MXUvuJU3GbpdGX6SZlNcKLUCYMXc4ai-CMlXQMlfqHw8Any1Z_14wFvZO8vQrO-VWg5QfLp8_9CoSancKdGmmRPRSVoP6PL8yrb2jK2lELe33ynvXbYRnkZh86aISsM_tzq_Rcnv_q5h1RPe2ISHfs6xJJzAa7xNnpt8eiPvb_PTnCt2qGHIIQQPNBUpYO8f3-uciXB0_wzq-xBsZ59ijXyY7m8-Odj_GZ2qLSqJ21DfSUUGtdXEYHqTiHVFLMNvFGa83ytokrBUh8LiEOyVx6jxpUKNBU3Q7H4Af71VWzQXDvB3BL_9uXD6CMcPJiSJuniu7i__iQvPfSewhUXqcurCw&s=vDGQWYj7zmizbiVFgvrbDDrgGn2_0gosM0QjqpbGq3-yVMyAPPw9mlZGKy12Hibas06Fc-yZsmTRVwfZf5XfHj4zzK_4Y2tqbZlOePD4KLEHlEHATzNPKJj3aWjk5PNSVJVJvOTrIWQTjNu7ddi3bYmSQlMh7bUoVxm10PBE8ZztiCudmPfo3qJZhtYZCljNAay-nk3DvJPKRj4c7sHOUGX0gTVbl7JIUmPTWoidMH0_qDqgZPOTJv9QNi2rYqJwvKNG1tUfVzoDky7_MI5OZnZi3XTAI1sNdvgjfEBpwZUx8wVYq2kk8R07A10oh2bIFVz53s7p0_LypOJMX1Cp0g&h=VBzK47sgIpLx74HH2fMcGk2VWbIP-JRVnYdiayFLXc0 + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/13feadcb-7356-4bf4-b212-7aacfbffb1cd?api-version=2015-11-01-preview&t=639113598887184142&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=nyoJr0pPN6DSNGbvwkp9t16VdiBCMHxbMspJzy-rC2ZWau2j0RjX4opw76LnHQ9Ctfvfprrjathukv3ECdy8a1SJT7uOylmhs9laeEHepFqcRbmFW2CONH7BWQYxJAm4ltEJlLwzRDoIe3AV2u51Awg1erJI9w7OH3GUu8rwZR1owHVXxkkxTM8gVMIJrpOKXX3NMomBHi4cvsLKhlwWmAuJLJqDI0VLrmSr24G0zS0bwwp_wsJEWVVDIr9aGobUfdl45qUsD2o46va46iTI-vkynU11T_kLNGuWkZb4HjqSzGz1gbDWr0ivTNPqfl7rDCZxlMTvLpjaw-m7ijoJJw&h=0OWXxJ64RYaJg3LPFVXtw1HOJ8lOGjw508UvWNKXmpI Cache-Control: - no-cache Content-Length: - "0" Date: - - Wed, 18 Feb 2026 00:43:44 GMT + - Thu, 09 Apr 2026 19:31:28 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis/operationresults/4726bb24-67d1-4955-98a9-e82b4737ebc0?api-version=2025-07-01&t=639069722251978637&c=MIIIrzCCBpegAwIBAgITUQHtApBbJIIjEO8RJgABAe0CkDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjYwMjA2MDYwMzM1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMaw34c60D5THswgIBf_WJOuv_MqG0nroresd-wEXrikLY6HXufjfc-EtuWFHU4YuXqGMQo4ViYnOc0JDdh3A8dq9ME8-rHJcU_ld10g9e2G5oHI4dDbXWlbpwdkpZ3xFPiw9FILolD2_W3KTgYK6OeA3dROHDhQHvl4DGDogqSJ5Y2HihoYdp08BPSJ1LBbg0VBsUMJVTV1fhd4iLSIt15z6X9Vo_rRyqo9bcbSHoOQZQrwb6cM-SIfZEiBVCxJlPVfj-nZF62BUS03sybYWi-zey7xvPqS2abdCixjIRYkGu6tzZO8Srw6T2WHSKPMibG-IHb-VOigrXgHmTQxyWkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQU2OPi8h57u1yW5KIVT9dZyisfvBQwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAiEOtd9XAjCfrIDUgZVpZOdyt1za4mSUHmu5tyJM2fgVejW0VJgIxlaDcFkI9W6IyJB-TCcjy53zBWr9-j26Ca6tigUq3DfiW9iXh4bU2BuTNvtfhg_xaio3bHfpAGBIq-OW6T79l8WoFQsvgGmxKYsb75lPAagoSt1wb9z9GgdoJiLYR4fi_QU7ollV3_MQGaw2mTkT9kqUkxtKs08dwXpJwWkSAjWLpB-jpYhD2giXwiqb7FLYuhxhtcd2jc1z0KBSOh7DsLfi-xbozekPgX3pcab0JYYpSRUGfmJrtX6khGdGTxPlaHwPRzGQqxilBuzgyGXNvxmQKlFNgF4MXUvuJU3GbpdGX6SZlNcKLUCYMXc4ai-CMlXQMlfqHw8Any1Z_14wFvZO8vQrO-VWg5QfLp8_9CoSancKdGmmRPRSVoP6PL8yrb2jK2lELe33ynvXbYRnkZh86aISsM_tzq_Rcnv_q5h1RPe2ISHfs6xJJzAa7xNnpt8eiPvb_PTnCt2qGHIIQQPNBUpYO8f3-uciXB0_wzq-xBsZ59ijXyY7m8-Odj_GZ2qLSqJ21DfSUUGtdXEYHqTiHVFLMNvFGa83ytokrBUh8LiEOyVx6jxpUKNBU3Q7H4Af71VWzQXDvB3BL_9uXD6CMcPJiSJuniu7i__iQvPfSewhUXqcurCw&s=IBHZAAHTwYrJ8x1kdXrOWPOMEXSOcxOiCANIEZlMzYayMrUJAxjWb_n3sLraJov1uaiF6MAAsu4pxel1fyQazCDiC8n2haR2tFEbVPGhUuQVQ4JKIwBpAH-7QEI8D0yabgZsNPA38Tb9s_HLhkradA2aU1TTuuT6F_hDw5mMjQlngg2DK3XxntrbYrYapvyh8A-PL_vyuDwiIJ09iyQljc1IT4u5eCVm0ocoGJbBzHd7d9v4nmW6Ws2iBu4YVHuOyB7hATxe9jYZBDhphYZiR-x9Bw8UfMpqHnjKoHjzegZd7BhQbHJJ6Msbw9nW7R8zglKNIbjG31eq3OTO8ApvTg&h=RIT2oHZtGgdPzKJCIHXarZIZ9OoH5i1uHf8-YOTShf0 + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg/operationresults/13feadcb-7356-4bf4-b212-7aacfbffb1cd?api-version=2025-07-01&t=639113598887184142&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=oKLb-1bbsYjs3y2FDgA3Rpu9rqiPFc8LDIdOdVF_iuh_WiKS51-i2257rkFWp3KLjXgenAb2ApB59Fb38Iz_09l953Vv0ncKHF1tGjpg3l0YduKBV6y2zzKkDcjl19XKjpapSZeiQu15hEjSKrKIuaQwH10ddz0QpY6wvTd-ADeTePR4BxKSH2OvgyJxrJNtNZISoEYGS2FzOe_XZkiFPEzDFW-g7FjC5kg7jSgpYQ5umKkE2k37daG3yzFjgZnHHBOlY2E9ZROyAr_oAkhOXZVP-u4f39TwwT0nywwHCQ5K-O84AVhs-UcwiK5C_NQBwEx-imBL8REgvdVL-_Bheg&h=c91VKXQ7Y5ZAR0nur2xHBJeDHrO91GyJHPkrcpp7Hwo Pragma: - no-cache Request-Context: @@ -12468,23 +20300,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/767bc1d2-cc1a-42e2-bdbc-5a26c7e94a5d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/786cfd4a-763b-43ae-bccf-f58f9aa66933 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "199" + - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "2999" + - "11999" X-Ms-Request-Id: - - 1e2984b8-e2c8-42d9-9f41-5ae541319144 + - 4f5b16b2-96c7-42c8-9a65-be70470b321e X-Ms-Routing-Request-Id: - - EASTUS2:20260218T004345Z:1e2984b8-e2c8-42d9-9f41-5ae541319144 + - EASTUS2:20260409T193128Z:4f5b16b2-96c7-42c8-9a65-be70470b321e X-Msedge-Ref: - - 'Ref A: 74C0BA5E16094EE6BC8892179A9AF9C2 Ref B: MWH011020807054 Ref C: 2026-02-18T00:43:44Z' + - 'Ref A: C2C9A39F843D4C6885822BADC8FB7655 Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:28Z' status: 202 Accepted code: 202 - duration: 262.108267ms - - id: 134 + duration: 317.968833ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -12503,10 +20335,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armoperationalinsights/v2.0.2 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armoperationalinsights/v2.0.2 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/4726bb24-67d1-4955-98a9-e82b4737ebc0?api-version=2015-11-01-preview&t=639069722251978637&c=MIIIrzCCBpegAwIBAgITUQHtApBbJIIjEO8RJgABAe0CkDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjYwMjA2MDYwMzM1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMaw34c60D5THswgIBf_WJOuv_MqG0nroresd-wEXrikLY6HXufjfc-EtuWFHU4YuXqGMQo4ViYnOc0JDdh3A8dq9ME8-rHJcU_ld10g9e2G5oHI4dDbXWlbpwdkpZ3xFPiw9FILolD2_W3KTgYK6OeA3dROHDhQHvl4DGDogqSJ5Y2HihoYdp08BPSJ1LBbg0VBsUMJVTV1fhd4iLSIt15z6X9Vo_rRyqo9bcbSHoOQZQrwb6cM-SIfZEiBVCxJlPVfj-nZF62BUS03sybYWi-zey7xvPqS2abdCixjIRYkGu6tzZO8Srw6T2WHSKPMibG-IHb-VOigrXgHmTQxyWkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQU2OPi8h57u1yW5KIVT9dZyisfvBQwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAiEOtd9XAjCfrIDUgZVpZOdyt1za4mSUHmu5tyJM2fgVejW0VJgIxlaDcFkI9W6IyJB-TCcjy53zBWr9-j26Ca6tigUq3DfiW9iXh4bU2BuTNvtfhg_xaio3bHfpAGBIq-OW6T79l8WoFQsvgGmxKYsb75lPAagoSt1wb9z9GgdoJiLYR4fi_QU7ollV3_MQGaw2mTkT9kqUkxtKs08dwXpJwWkSAjWLpB-jpYhD2giXwiqb7FLYuhxhtcd2jc1z0KBSOh7DsLfi-xbozekPgX3pcab0JYYpSRUGfmJrtX6khGdGTxPlaHwPRzGQqxilBuzgyGXNvxmQKlFNgF4MXUvuJU3GbpdGX6SZlNcKLUCYMXc4ai-CMlXQMlfqHw8Any1Z_14wFvZO8vQrO-VWg5QfLp8_9CoSancKdGmmRPRSVoP6PL8yrb2jK2lELe33ynvXbYRnkZh86aISsM_tzq_Rcnv_q5h1RPe2ISHfs6xJJzAa7xNnpt8eiPvb_PTnCt2qGHIIQQPNBUpYO8f3-uciXB0_wzq-xBsZ59ijXyY7m8-Odj_GZ2qLSqJ21DfSUUGtdXEYHqTiHVFLMNvFGa83ytokrBUh8LiEOyVx6jxpUKNBU3Q7H4Af71VWzQXDvB3BL_9uXD6CMcPJiSJuniu7i__iQvPfSewhUXqcurCw&s=vDGQWYj7zmizbiVFgvrbDDrgGn2_0gosM0QjqpbGq3-yVMyAPPw9mlZGKy12Hibas06Fc-yZsmTRVwfZf5XfHj4zzK_4Y2tqbZlOePD4KLEHlEHATzNPKJj3aWjk5PNSVJVJvOTrIWQTjNu7ddi3bYmSQlMh7bUoVxm10PBE8ZztiCudmPfo3qJZhtYZCljNAay-nk3DvJPKRj4c7sHOUGX0gTVbl7JIUmPTWoidMH0_qDqgZPOTJv9QNi2rYqJwvKNG1tUfVzoDky7_MI5OZnZi3XTAI1sNdvgjfEBpwZUx8wVYq2kk8R07A10oh2bIFVz53s7p0_LypOJMX1Cp0g&h=VBzK47sgIpLx74HH2fMcGk2VWbIP-JRVnYdiayFLXc0 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/13feadcb-7356-4bf4-b212-7aacfbffb1cd?api-version=2015-11-01-preview&t=639113598887184142&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=nyoJr0pPN6DSNGbvwkp9t16VdiBCMHxbMspJzy-rC2ZWau2j0RjX4opw76LnHQ9Ctfvfprrjathukv3ECdy8a1SJT7uOylmhs9laeEHepFqcRbmFW2CONH7BWQYxJAm4ltEJlLwzRDoIe3AV2u51Awg1erJI9w7OH3GUu8rwZR1owHVXxkkxTM8gVMIJrpOKXX3NMomBHi4cvsLKhlwWmAuJLJqDI0VLrmSr24G0zS0bwwp_wsJEWVVDIr9aGobUfdl45qUsD2o46va46iTI-vkynU11T_kLNGuWkZb4HjqSzGz1gbDWr0ivTNPqfl7rDCZxlMTvLpjaw-m7ijoJJw&h=0OWXxJ64RYaJg3LPFVXtw1HOJ8lOGjw508UvWNKXmpI method: GET response: proto: HTTP/2.0 @@ -12516,7 +20348,7 @@ interactions: trailer: {} content_length: 340 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/4726bb24-67d1-4955-98a9-e82b4737ebc0","name":"4726bb24-67d1-4955-98a9-e82b4737ebc0","status":"Succeeded","startTime":"2026-02-18T00:43:45.1353113Z","endTime":"2026-02-18T00:43:51.0570054Z","properties":{}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.OperationalInsights/locations/eastus2/operationstatuses/13feadcb-7356-4bf4-b212-7aacfbffb1cd","name":"13feadcb-7356-4bf4-b212-7aacfbffb1cd","status":"Succeeded","startTime":"2026-04-09T19:31:28.6736772Z","endTime":"2026-04-09T19:31:33.9842674Z","properties":{}}' headers: Access-Control-Allow-Origin: - '*' @@ -12527,7 +20359,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:44:05 GMT + - Thu, 09 Apr 2026 19:31:48 GMT Expires: - "-1" Pragma: @@ -12541,23 +20373,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/westus2/d0cc932b-7414-4db1-a140-9fd346e0fc01 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/13b2136b-47ab-4833-98a6-276b78354022 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 288f80c1-b2c3-42dd-afad-9bebe4cde150 + - 2e2c9b40-e3af-4ae7-90d3-7484c9926b3c X-Ms-Routing-Request-Id: - - WESTUS2:20260218T004405Z:288f80c1-b2c3-42dd-afad-9bebe4cde150 + - EASTUS2:20260409T193148Z:2e2c9b40-e3af-4ae7-90d3-7484c9926b3c X-Msedge-Ref: - - 'Ref A: F6237123A221407D8F2062E91FE9D9A1 Ref B: MWH011020807054 Ref C: 2026-02-18T00:44:05Z' + - 'Ref A: 5ECB140AC4FD43D1A47E17A1EB522CBA Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:48Z' status: 200 OK code: 200 - duration: 294.390728ms - - id: 135 + duration: 89.449375ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -12578,10 +20410,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -12591,7 +20423,7 @@ interactions: trailer: {} content_length: 2804 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"},"properties":{"templateHash":"10898219461876186438","parameters":{"environmentName":{"type":"String","value":"azdtest-l2ebf26"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-18T01:34:21Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-18T00:37:35.2640026Z","duration":"PT3M13.395129S","correlationId":"ae765b5ea6bdeeb9589a7ecc70ac1d72","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-l2ebf26","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l2ebf26"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrxvttwt2sqmqis.azurecr.io"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/providers/Microsoft.Authorization/roleAssignments/96612637-69f1-58b1-9947-02c4af78682c"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"},"properties":{"templateHash":"3995333194191014458","parameters":{"environmentName":{"type":"String","value":"azdtest-d23239f"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:22:51Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:25:15.8926326Z","duration":"PT2M24.6587839S","correlationId":"c4c3798f5563852ad2bca91fe5c3eaeb","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d23239f"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrw7djqs5ah3wpg.azurecr.io"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/providers/Microsoft.Authorization/roleAssignments/9542945a-c127-55c4-be76-848f12751ae9"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg"}]}}' headers: Cache-Control: - no-cache @@ -12600,7 +20432,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:44:05 GMT + - Thu, 09 Apr 2026 19:31:48 GMT Expires: - "-1" Pragma: @@ -12612,21 +20444,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 0e2f0ec2-c15b-48ed-b856-69ccac519368 + - f8b9c77a-7694-43ee-8674-840ca0a502bb X-Ms-Routing-Request-Id: - - WESTUS2:20260218T004405Z:0e2f0ec2-c15b-48ed-b856-69ccac519368 + - EASTUS2:20260409T193149Z:f8b9c77a-7694-43ee-8674-840ca0a502bb X-Msedge-Ref: - - 'Ref A: 8880746A51594925BBD1451286890148 Ref B: MWH011020807054 Ref C: 2026-02-18T00:44:05Z' + - 'Ref A: 5CD002446CF24F53971F5A9E737F751F Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:48Z' status: 200 OK code: 200 - duration: 186.50504ms - - id: 136 + duration: 82.167625ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -12647,10 +20479,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/resources?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -12658,18 +20490,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2315 + content_length: 2291 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis","name":"mi-xvttwt2sqmqis","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis","name":"acrxvttwt2sqmqis","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:34:30.3976178Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:34:30.3976178Z"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis","name":"cae-xvttwt2sqmqis","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:34:53.1104058Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:34:53.1104058Z"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis","name":"app-xvttwt2sqmqis","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis":{"principalId":"863abe5f-5457-4008-8ed5-1887a8b9d793","clientId":"21c8d2dd-e2c0-4195-b09c-69319e5b9347"}}},"tags":{"azd-env-name":"azdtest-l2ebf26","azd-service-name":"app"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-02-18T00:37:16.2109811Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-18T00:39:21.2109081Z"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg","name":"mi-w7djqs5ah3wpg","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg","name":"acrw7djqs5ah3wpg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:22:53.8881212Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:22:53.8881212Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg","name":"cae-w7djqs5ah3wpg","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:23:15.2657198Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:23:15.2657198Z"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg","name":"app-w7djqs5ah3wpg","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg":{"principalId":"1ae8c362-d01f-4f05-9985-af8b09f7740c","clientId":"df6bface-b34a-4a8c-9ef0-49fbd71f4cca"}}},"tags":{"azd-env-name":"azdtest-d23239f","azd-service-name":"app"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T19:24:53.9848511Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T19:26:58.6117124Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2315" + - "2291" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 00:44:05 GMT + - Thu, 09 Apr 2026 19:31:49 GMT Expires: - "-1" Pragma: @@ -12681,21 +20513,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 7cab7c07-1a1b-4a39-87c5-8fa07e9e5d07 + - f628c867-7789-433f-b042-16fe74ead619 X-Ms-Routing-Request-Id: - - EASTUS2:20260218T004405Z:7cab7c07-1a1b-4a39-87c5-8fa07e9e5d07 + - EASTUS2:20260409T193149Z:f628c867-7789-433f-b042-16fe74ead619 X-Msedge-Ref: - - 'Ref A: 08B2A925D6F44FD3B2164C6E6FCE38FE Ref B: MWH011020807054 Ref C: 2026-02-18T00:44:05Z' + - 'Ref A: BEB621BED5FF4BDDAD39DE493E40881F Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:49Z' status: 200 OK code: 200 - duration: 100.417013ms - - id: 137 + duration: 107.734ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -12716,10 +20548,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-l2ebf26?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d23239f?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -12736,11 +20568,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 18 Feb 2026 00:44:05 GMT + - Thu, 09 Apr 2026 19:31:49 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMMkVCRjI2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639069734967739764&c=MIIHhzCCBm-gAwIBAgITfAo16o_0DOVz2kga3gAACjXqjzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMjExMDY0MzI5WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6Lh0c_IWEeKPUpwwHqrekcsDnbjkLX7k2UR61Zp254cIsgsKUMkc8oNceote8MVgXcPHwrTWYDaG_Lq0IxI8l2kLHoucPJ0H87D5XpdUmndOu30ZR0nO4ePmJ7CYEEogHS4a3NjMXFZiES3dxQxJYFJVtMVyFXXWFNBH7XwGbi7T1m5K2mfTRCc6fzsphBzH4uqWHMmayNXqGv_pxeQzr6UbLEdTVdW7h-ffd8hWR6yFHvBZGGZGXeh3QGOTpn8dWBmyyewDm_r0iOlhjLRK2ykJsK-3nfdzIXEH5hFfNRTmr50rHzy9mzSj6g-Div2LpVEG5Tp66B1z8mQh5jmn0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQRBtACpaWDfb2P-3QGcREdiEaZ0jAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACux_NmhhSn1UGkO_KLh7fywUnbwtZ2l0gUaKjM2P6OZ-ehohScqAp1N0cE2GLEa_Mio241IrwyzQZV6VxoPg3lCEqY_AbRg4iQnCUBQH8cuGXYm2UKVOys2b-N43tiHXxz5pYdkjWbQ0ZUisVbnJHiPvAX9jlzw-w-dlfq76btCcBFm4rCza4UTY3DF27TnhaX5iXfiKFVgc55Oe0tGtj6ZHmzKnF0ctgtefbrPIoAVq4OovLgJ5WF8mGBu_nXkBZzsHESnOic7bPduMcSY7l8b6QIdZ_Nr_iG5IdXTVJFKy8NunNpCzLgPiOjxI5_u-BR_ABOruNMYgf0raWd9gJA&s=QsaqzD8qeEwIAgJYNqaq4TmAiPfJazEfc66tCx2BdM5NQkVuVb6aGOkJJuk-OOryPbTlKpZwNnBCwy6lRaRQ6I-at0Saee6fmaRm74L2pSzC-qm-qt56gN6oTLDWGjCOifi9-wRHhECw6XvVqo-bEF9tFgwSxwh28tIdxIbqA8_Pyh65wMwbNY9zcJDAHDAWRkrDOZ74lBSNCexPRlj4Fo_2EX5K9_LSk8Frs6IU6RXdgOJLHL7pXbiPkCF3dDnTESYPlfSqe_PEh_pUaVMuAm1JlL7ozKC5OAojS_YpIGbdZxAhzqT1R-m_GebPLMbRWHDwa4itwKGFWobEwqjZnw&h=cgsT3hzzwlqJaC-fhMYEwAYAIE2DqQP-ozAUNusdp5o + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREMjMyMzlGLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113617550957912&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=HmkaK08V-u3_Ub32pNHSuOv-OLR_l1HEkTEpDiNfEmMZUF3HUU55BjAnxFZBn3mmmRJ1tJOIArysCjkJ-6Rs3LFOW0ahtgx-stz2if71fSlfvIwj1DJBL7hW2natYQZGBpWu-PawO9pnLHKX4f_k_iPVXJ94YA8d_y8KRMCipAdMHLLPdoTdyGoY7MwkPpNtSfyLhtQ41gZCpPbcp0mi2pBgbs4VvRP87kOTakUuS2xm7MybGQBUeMmNqJRoNn-GDuVUSxHuVES9TDsNsD9-lwf-2cuB_Z0yUOj4IrMECJ0gGne9Y6FhSO7Qu2PQQiV-WwM1WLPHDneVMFplj5io2w&h=nHyskA0Rnvpneixkjj32rjajqfQ0C3WHcS6Qs3NeypM Pragma: - no-cache Retry-After: @@ -12752,21 +20584,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "199" + - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "2999" + - "11999" X-Ms-Request-Id: - - 5dae8ff2-2296-4fd3-b517-1fa8ccc80c47 + - 58b70516-ae09-43a4-8590-ca7b99b0fcf2 X-Ms-Routing-Request-Id: - - EASTUS2:20260218T004406Z:5dae8ff2-2296-4fd3-b517-1fa8ccc80c47 + - EASTUS2:20260409T193149Z:58b70516-ae09-43a4-8590-ca7b99b0fcf2 X-Msedge-Ref: - - 'Ref A: 66A4DFB9A7274E26B10265C45B7310D3 Ref B: MWH011020807054 Ref C: 2026-02-18T00:44:05Z' + - 'Ref A: BEE9E6F495AD437F93B809C093A728CB Ref B: BN1AA2051014027 Ref C: 2026-04-09T19:31:49Z' status: 202 Accepted code: 202 - duration: 263.582933ms - - id: 138 + duration: 196.295042ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -12785,10 +20617,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMMkVCRjI2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639069734967739764&c=MIIHhzCCBm-gAwIBAgITfAo16o_0DOVz2kga3gAACjXqjzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMjExMDY0MzI5WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6Lh0c_IWEeKPUpwwHqrekcsDnbjkLX7k2UR61Zp254cIsgsKUMkc8oNceote8MVgXcPHwrTWYDaG_Lq0IxI8l2kLHoucPJ0H87D5XpdUmndOu30ZR0nO4ePmJ7CYEEogHS4a3NjMXFZiES3dxQxJYFJVtMVyFXXWFNBH7XwGbi7T1m5K2mfTRCc6fzsphBzH4uqWHMmayNXqGv_pxeQzr6UbLEdTVdW7h-ffd8hWR6yFHvBZGGZGXeh3QGOTpn8dWBmyyewDm_r0iOlhjLRK2ykJsK-3nfdzIXEH5hFfNRTmr50rHzy9mzSj6g-Div2LpVEG5Tp66B1z8mQh5jmn0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQRBtACpaWDfb2P-3QGcREdiEaZ0jAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACux_NmhhSn1UGkO_KLh7fywUnbwtZ2l0gUaKjM2P6OZ-ehohScqAp1N0cE2GLEa_Mio241IrwyzQZV6VxoPg3lCEqY_AbRg4iQnCUBQH8cuGXYm2UKVOys2b-N43tiHXxz5pYdkjWbQ0ZUisVbnJHiPvAX9jlzw-w-dlfq76btCcBFm4rCza4UTY3DF27TnhaX5iXfiKFVgc55Oe0tGtj6ZHmzKnF0ctgtefbrPIoAVq4OovLgJ5WF8mGBu_nXkBZzsHESnOic7bPduMcSY7l8b6QIdZ_Nr_iG5IdXTVJFKy8NunNpCzLgPiOjxI5_u-BR_ABOruNMYgf0raWd9gJA&s=QsaqzD8qeEwIAgJYNqaq4TmAiPfJazEfc66tCx2BdM5NQkVuVb6aGOkJJuk-OOryPbTlKpZwNnBCwy6lRaRQ6I-at0Saee6fmaRm74L2pSzC-qm-qt56gN6oTLDWGjCOifi9-wRHhECw6XvVqo-bEF9tFgwSxwh28tIdxIbqA8_Pyh65wMwbNY9zcJDAHDAWRkrDOZ74lBSNCexPRlj4Fo_2EX5K9_LSk8Frs6IU6RXdgOJLHL7pXbiPkCF3dDnTESYPlfSqe_PEh_pUaVMuAm1JlL7ozKC5OAojS_YpIGbdZxAhzqT1R-m_GebPLMbRWHDwa4itwKGFWobEwqjZnw&h=cgsT3hzzwlqJaC-fhMYEwAYAIE2DqQP-ozAUNusdp5o + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREMjMyMzlGLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113617550957912&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=HmkaK08V-u3_Ub32pNHSuOv-OLR_l1HEkTEpDiNfEmMZUF3HUU55BjAnxFZBn3mmmRJ1tJOIArysCjkJ-6Rs3LFOW0ahtgx-stz2if71fSlfvIwj1DJBL7hW2natYQZGBpWu-PawO9pnLHKX4f_k_iPVXJ94YA8d_y8KRMCipAdMHLLPdoTdyGoY7MwkPpNtSfyLhtQ41gZCpPbcp0mi2pBgbs4VvRP87kOTakUuS2xm7MybGQBUeMmNqJRoNn-GDuVUSxHuVES9TDsNsD9-lwf-2cuB_Z0yUOj4IrMECJ0gGne9Y6FhSO7Qu2PQQiV-WwM1WLPHDneVMFplj5io2w&h=nHyskA0Rnvpneixkjj32rjajqfQ0C3WHcS6Qs3NeypM method: GET response: proto: HTTP/2.0 @@ -12805,7 +20637,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 18 Feb 2026 01:05:11 GMT + - Thu, 09 Apr 2026 20:02:50 GMT Expires: - "-1" Pragma: @@ -12817,21 +20649,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 0f43e79a-7b30-48b8-9cfb-37cc6f2820ed + - 92442055-0248-4980-a2ee-baebf15e2a1a X-Ms-Routing-Request-Id: - - WESTUS2:20260218T010512Z:0f43e79a-7b30-48b8-9cfb-37cc6f2820ed + - EASTUS:20260409T200250Z:92442055-0248-4980-a2ee-baebf15e2a1a X-Msedge-Ref: - - 'Ref A: EA9BE69DF9AF4DDFA1E08DA2BD8A8FC5 Ref B: MWH011020807054 Ref C: 2026-02-18T01:05:11Z' + - 'Ref A: 9F2EC0A77103465C8A7F91867B82F3A8 Ref B: BN1AA2051014027 Ref C: 2026-04-09T20:02:50Z' status: 200 OK code: 200 - duration: 325.663446ms - - id: 139 + duration: 94.585292ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -12852,10 +20684,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -12865,7 +20697,7 @@ interactions: trailer: {} content_length: 2804 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l2ebf26","azd-layer-name":"","azd-provision-param-hash":"fa6321fd6fad2d7ad80dc6940aa6810610d95eccd98e4b93865d59d1b5ef817e"},"properties":{"templateHash":"10898219461876186438","parameters":{"environmentName":{"type":"String","value":"azdtest-l2ebf26"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-02-18T01:34:21Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-18T00:37:35.2640026Z","duration":"PT3M13.395129S","correlationId":"ae765b5ea6bdeeb9589a7ecc70ac1d72","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-l2ebf26","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l2ebf26"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-xvttwt2sqmqis.calmriver-06247d77.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrxvttwt2sqmqis.azurecr.io"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/containerApps/app-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.App/managedEnvironments/cae-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ContainerRegistry/registries/acrxvttwt2sqmqis/providers/Microsoft.Authorization/roleAssignments/96612637-69f1-58b1-9947-02c4af78682c"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-xvttwt2sqmqis"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-l2ebf26/providers/Microsoft.OperationalInsights/workspaces/law-xvttwt2sqmqis"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d23239f","azd-layer-name":"","azd-provision-param-hash":"cda2cf0682f95761089a26a7e72c46e31faa3e27657083393e6c1f206d080bf8"},"properties":{"templateHash":"3995333194191014458","parameters":{"environmentName":{"type":"String","value":"azdtest-d23239f"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:22:51Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:25:15.8926326Z","duration":"PT2M24.6587839S","correlationId":"c4c3798f5563852ad2bca91fe5c3eaeb","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d23239f"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-w7djqs5ah3wpg.wittyhill-8a009f22.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrw7djqs5ah3wpg.azurecr.io"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/containerApps/app-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.App/managedEnvironments/cae-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ContainerRegistry/registries/acrw7djqs5ah3wpg/providers/Microsoft.Authorization/roleAssignments/9542945a-c127-55c4-be76-848f12751ae9"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-w7djqs5ah3wpg"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d23239f/providers/Microsoft.OperationalInsights/workspaces/law-w7djqs5ah3wpg"}]}}' headers: Cache-Control: - no-cache @@ -12874,7 +20706,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 01:05:12 GMT + - Thu, 09 Apr 2026 20:02:50 GMT Expires: - "-1" Pragma: @@ -12886,21 +20718,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 9ca14396-7fe2-4c61-85b9-d89d0394ef6b + - 66d3ea22-d9df-49e8-93d3-dbbfbe80ef4d X-Ms-Routing-Request-Id: - - WESTUS:20260218T010512Z:9ca14396-7fe2-4c61-85b9-d89d0394ef6b + - EASTUS:20260409T200250Z:66d3ea22-d9df-49e8-93d3-dbbfbe80ef4d X-Msedge-Ref: - - 'Ref A: 8D30A7998C6047DE9ECC8F8125C41DAA Ref B: MWH011020807054 Ref C: 2026-02-18T01:05:12Z' + - 'Ref A: 4B7B8EC1C0494039B419BDBA37ECFDE2 Ref B: BN1AA2051014027 Ref C: 2026-04-09T20:02:50Z' status: 200 OK code: 200 - duration: 269.188527ms - - id: 140 + duration: 127.627833ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -12911,7 +20743,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l2ebf26"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d23239f"}}' form: {} headers: Accept: @@ -12925,10 +20757,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -12936,20 +20768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 569 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l2ebf26"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-18T01:05:12.9860116Z","duration":"PT0.0008782S","correlationId":"818fbd13a149388c1876615125cb244d","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d23239f"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T20:02:50.7811601Z","duration":"PT0.000958S","correlationId":"b37bfc08e24ea92b8a1b4e0629cde705","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846/operationStatuses/08584302301724863004?api-version=2021-04-01&t=639069735157516498&c=MIIHhzCCBm-gAwIBAgITfAo16o_0DOVz2kga3gAACjXqjzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMjExMDY0MzI5WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6Lh0c_IWEeKPUpwwHqrekcsDnbjkLX7k2UR61Zp254cIsgsKUMkc8oNceote8MVgXcPHwrTWYDaG_Lq0IxI8l2kLHoucPJ0H87D5XpdUmndOu30ZR0nO4ePmJ7CYEEogHS4a3NjMXFZiES3dxQxJYFJVtMVyFXXWFNBH7XwGbi7T1m5K2mfTRCc6fzsphBzH4uqWHMmayNXqGv_pxeQzr6UbLEdTVdW7h-ffd8hWR6yFHvBZGGZGXeh3QGOTpn8dWBmyyewDm_r0iOlhjLRK2ykJsK-3nfdzIXEH5hFfNRTmr50rHzy9mzSj6g-Div2LpVEG5Tp66B1z8mQh5jmn0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQRBtACpaWDfb2P-3QGcREdiEaZ0jAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACux_NmhhSn1UGkO_KLh7fywUnbwtZ2l0gUaKjM2P6OZ-ehohScqAp1N0cE2GLEa_Mio241IrwyzQZV6VxoPg3lCEqY_AbRg4iQnCUBQH8cuGXYm2UKVOys2b-N43tiHXxz5pYdkjWbQ0ZUisVbnJHiPvAX9jlzw-w-dlfq76btCcBFm4rCza4UTY3DF27TnhaX5iXfiKFVgc55Oe0tGtj6ZHmzKnF0ctgtefbrPIoAVq4OovLgJ5WF8mGBu_nXkBZzsHESnOic7bPduMcSY7l8b6QIdZ_Nr_iG5IdXTVJFKy8NunNpCzLgPiOjxI5_u-BR_ABOruNMYgf0raWd9gJA&s=V-4IPhvFpBxKSfwRap3BINNI9BuLqcUgXUNLgUzad5bxVSzfSe-TA9wXzv-IOBaz1IOqFIzJJPTyaJwWrp-cBxXxMm8fRytfv3bnXiTFkjH7tg7UULjTQURNGzDq_78aXjINOMGmpt6qDjD8h11lV8_6RcJTHBpAtJKpk3f5mRzxFH3w4Iv1YfCJNe1RvssjxfPO2JCrPVgIAvl88hQFk21MdGVcM9hJ3zlcUaLaQecLfcF6jTGv0gGIHCL0qQgsjnxiKith8zVt4t2BM3PJAsoHtBF64kweAZzDmeHMQzM6FQo8OmMNpPxcobt0_4jkb8ZMj_qxzG0CJiSDoXhmXw&h=KP39JHAiYC8LuqNN5lNihec3qlLfw6rl184d3RnDAXs + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551/operationStatuses/08584258419146887756?api-version=2021-04-01&t=639113617709686626&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=DCvuoN9DybmI_NiXF3qpXIX9LMsV0m__hkZSb0ASdvxkfOQp26vnzYAxc4yhaoevm39ZRVW_y6VddNQQZH1m3MHj-nIgzENNdyjlRqMdYi_7M3IVce7litNnLmGZ1vt3WUT7TgIGjq3LdS8fdhDU2_LDnnirWp9218JQjcJpWe1Q6Zwlq24PlXYAxpzTOUrS-MQYJpuCVtf4Z2SUTlzVePaKgfR_96_q2EzijsMtJe8ivns5yiNggf-qNabXu2nDYaak4uWDFkkYQQFB8CiLisvD6c63KttKKH_Wmv38YKsVb5xtoX52lhi4kOFAfGy5FYKE2tYlzCH8m6dYrUOQIg&h=wwbSBGAafPTD-p5Vstib4Ne73_fnqS_GXRfe1cDVczY Cache-Control: - no-cache Content-Length: - - "570" + - "569" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 01:05:15 GMT + - Thu, 09 Apr 2026 20:02:50 GMT Expires: - "-1" Pragma: @@ -12961,23 +20793,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Deployment-Engine-Version: - - 1.573.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "2999" + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "199" + - "799" X-Ms-Request-Id: - - f6043140-d00c-484e-8725-ebb1628e278b + - 9b894850-e095-47b1-a188-fd5b921d8003 X-Ms-Routing-Request-Id: - - WESTUS2:20260218T010515Z:f6043140-d00c-484e-8725-ebb1628e278b + - EASTUS2:20260409T200250Z:9b894850-e095-47b1-a188-fd5b921d8003 X-Msedge-Ref: - - 'Ref A: 20665FC16441418BBA292E2B8B0AF2ED Ref B: MWH011020807054 Ref C: 2026-02-18T01:05:12Z' + - 'Ref A: 4A43BC54C001467992D0959AB0A50F90 Ref B: BN1AA2051014027 Ref C: 2026-04-09T20:02:50Z' status: 200 OK code: 200 - duration: 3.369965523s - - id: 141 + duration: 572.97625ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -12996,10 +20828,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846/operationStatuses/08584302301724863004?api-version=2021-04-01&t=639069735157516498&c=MIIHhzCCBm-gAwIBAgITfAo16o_0DOVz2kga3gAACjXqjzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMjExMDY0MzI5WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6Lh0c_IWEeKPUpwwHqrekcsDnbjkLX7k2UR61Zp254cIsgsKUMkc8oNceote8MVgXcPHwrTWYDaG_Lq0IxI8l2kLHoucPJ0H87D5XpdUmndOu30ZR0nO4ePmJ7CYEEogHS4a3NjMXFZiES3dxQxJYFJVtMVyFXXWFNBH7XwGbi7T1m5K2mfTRCc6fzsphBzH4uqWHMmayNXqGv_pxeQzr6UbLEdTVdW7h-ffd8hWR6yFHvBZGGZGXeh3QGOTpn8dWBmyyewDm_r0iOlhjLRK2ykJsK-3nfdzIXEH5hFfNRTmr50rHzy9mzSj6g-Div2LpVEG5Tp66B1z8mQh5jmn0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQRBtACpaWDfb2P-3QGcREdiEaZ0jAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACux_NmhhSn1UGkO_KLh7fywUnbwtZ2l0gUaKjM2P6OZ-ehohScqAp1N0cE2GLEa_Mio241IrwyzQZV6VxoPg3lCEqY_AbRg4iQnCUBQH8cuGXYm2UKVOys2b-N43tiHXxz5pYdkjWbQ0ZUisVbnJHiPvAX9jlzw-w-dlfq76btCcBFm4rCza4UTY3DF27TnhaX5iXfiKFVgc55Oe0tGtj6ZHmzKnF0ctgtefbrPIoAVq4OovLgJ5WF8mGBu_nXkBZzsHESnOic7bPduMcSY7l8b6QIdZ_Nr_iG5IdXTVJFKy8NunNpCzLgPiOjxI5_u-BR_ABOruNMYgf0raWd9gJA&s=V-4IPhvFpBxKSfwRap3BINNI9BuLqcUgXUNLgUzad5bxVSzfSe-TA9wXzv-IOBaz1IOqFIzJJPTyaJwWrp-cBxXxMm8fRytfv3bnXiTFkjH7tg7UULjTQURNGzDq_78aXjINOMGmpt6qDjD8h11lV8_6RcJTHBpAtJKpk3f5mRzxFH3w4Iv1YfCJNe1RvssjxfPO2JCrPVgIAvl88hQFk21MdGVcM9hJ3zlcUaLaQecLfcF6jTGv0gGIHCL0qQgsjnxiKith8zVt4t2BM3PJAsoHtBF64kweAZzDmeHMQzM6FQo8OmMNpPxcobt0_4jkb8ZMj_qxzG0CJiSDoXhmXw&h=KP39JHAiYC8LuqNN5lNihec3qlLfw6rl184d3RnDAXs + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551/operationStatuses/08584258419146887756?api-version=2021-04-01&t=639113617709686626&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=DCvuoN9DybmI_NiXF3qpXIX9LMsV0m__hkZSb0ASdvxkfOQp26vnzYAxc4yhaoevm39ZRVW_y6VddNQQZH1m3MHj-nIgzENNdyjlRqMdYi_7M3IVce7litNnLmGZ1vt3WUT7TgIGjq3LdS8fdhDU2_LDnnirWp9218JQjcJpWe1Q6Zwlq24PlXYAxpzTOUrS-MQYJpuCVtf4Z2SUTlzVePaKgfR_96_q2EzijsMtJe8ivns5yiNggf-qNabXu2nDYaak4uWDFkkYQQFB8CiLisvD6c63KttKKH_Wmv38YKsVb5xtoX52lhi4kOFAfGy5FYKE2tYlzCH8m6dYrUOQIg&h=wwbSBGAafPTD-p5Vstib4Ne73_fnqS_GXRfe1cDVczY method: GET response: proto: HTTP/2.0 @@ -13018,7 +20850,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 18 Feb 2026 01:05:46 GMT + - Thu, 09 Apr 2026 20:03:21 GMT Expires: - "-1" Pragma: @@ -13030,21 +20862,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d + - b37bfc08e24ea92b8a1b4e0629cde705 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "1099" X-Ms-Request-Id: - - 9101e007-31ef-459a-b927-3b9b5c3f1432 + - 99a7e5ec-ae75-4380-8eae-0a19c0f6e4fa X-Ms-Routing-Request-Id: - - WESTUS2:20260218T010546Z:9101e007-31ef-459a-b927-3b9b5c3f1432 + - EASTUS:20260409T200321Z:99a7e5ec-ae75-4380-8eae-0a19c0f6e4fa X-Msedge-Ref: - - 'Ref A: 7A7FD623AED64E6D84E31E0FE2575164 Ref B: MWH011020807054 Ref C: 2026-02-18T01:05:46Z' + - 'Ref A: C188AA3BD1664745B351524E96E8FCB8 Ref B: BN1AA2051014027 Ref C: 2026-04-09T20:03:21Z' status: 200 OK code: 200 - duration: 381.901809ms - - id: 142 + duration: 140.783083ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -13063,10 +20895,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.5; linux),azdev/0.0.0-dev.0 (Go go1.25.5; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846?api-version=2021-04-01 + - b37bfc08e24ea92b8a1b4e0629cde705 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -13076,42 +20908,3328 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-l2ebf26-1771374846","name":"azdtest-l2ebf26-1771374846","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l2ebf26"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-18T01:05:18.6521617Z","duration":"PT5.6661501S","correlationId":"818fbd13a149388c1876615125cb244d","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-d23239f-1775762551","name":"azdtest-d23239f-1775762551","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d23239f"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T20:02:51.2770814Z","duration":"PT0.4959213S","correlationId":"b37bfc08e24ea92b8a1b4e0629cde705","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "605" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 20:03:21 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b37bfc08e24ea92b8a1b4e0629cde705 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7d30b48c-afc0-42de-a98a-513ed7123dae + X-Ms-Routing-Request-Id: + - EASTUS:20260409T200321Z:7d30b48c-afc0-42de-a98a-513ed7123dae + X-Msedge-Ref: + - 'Ref A: 6555B0A2B38142B8814B15F8C43FA87B Ref B: BN1AA2051014027 Ref C: 2026-04-09T20:03:21Z' + status: 200 OK + code: 200 + duration: 137.568083ms + - id: 168 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "605" + - "138770" + 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: - - Wed, 18 Feb 2026 01:05:46 GMT + - Thu, 09 Apr 2026 20:03:21 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 20:08:21 GMT + Source-Age: + - "0" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 818fbd13a149388c1876615125cb244d - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" - X-Ms-Request-Id: - - f90b4491-23f5-47a5-9610-7c6c6bc317f0 - X-Ms-Routing-Request-Id: - - WESTUS2:20260218T010546Z:f90b4491-23f5-47a5-9610-7c6c6bc317f0 - X-Msedge-Ref: - - 'Ref A: C173ABF6DBEC4C4B810EB7BA8808C3CA Ref B: MWH011020807054 Ref C: 2026-02-18T01:05:46Z' + X-Fastly-Request-Id: + - 4e7321584c9cec8105bbaa1ab7b0506543aca699 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760091-MIA + X-Timer: + - S1775765002.852865,VS0,VE93 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 417.335689ms - - id: 143 + duration: 200.285875ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -13130,7 +24248,7 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.5; linux) + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) url: https://aka.ms:443/azd/extensions/registry method: GET response: @@ -13150,9 +24268,9 @@ interactions: Content-Length: - "0" Date: - - Wed, 18 Feb 2026 01:05:47 GMT + - Thu, 09 Apr 2026 20:03:22 GMT Expires: - - Wed, 18 Feb 2026 01:05:47 GMT + - Thu, 09 Apr 2026 20:03:22 GMT Location: - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json Pragma: @@ -13167,8 +24285,8 @@ interactions: - "True" status: 301 Moved Permanently code: 301 - duration: 271.661018ms - - id: 144 + duration: 165.303542ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -13189,7 +24307,7 @@ interactions: Referer: - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-azd-extensions/1.0.0 (go1.25.5; linux) + - 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: @@ -13198,2707 +24316,5801 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 123955 + content_length: 195006 uncompressed: false body: |- { "extensions": [ { - "id": "microsoft.azd.demo", - "namespace": "demo", - "displayName": "Demo Extension", - "description": "This extension provides examples of the AZD extension framework.", + "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.1.0-beta.1", + "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" + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" ], - "usage": "azd demo \u003ccommand\u003e [options]", - "examples": [ + "providers": [ { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" - }, + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent \u003ccommand\u003e [options]", + "examples": [ { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + "value": "2cafe851463b9329f4284ea41ff161b8deb6e7bc79e2519cda9c83a4413deff0" }, - "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" + "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": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + "value": "cd4756b84f0ee721089ea3d3e1e0b47b23d8cf152c1861bd13be29e24c98027f" }, - "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" + "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": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" + "value": "4c7ea2edbd8c273ef387d9866c997be079f306ac19534eb8739a0e93b2f3f614" }, - "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" + "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": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" + "value": "3b1e95a55d31b08d7153b14226d21ad98b138ebf438b9cb4b617ac6e5092389c" }, - "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" + "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": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + "value": "cbcaaa3b037f5c9d2c9a92e6d40165520ad5fa518689b000df44c279d73a14eb" }, - "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" + "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": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" + "value": "2b3ae89d3cd4476f334ce75db4a12329c0f424ecd499941ba298707892fa5146" }, - "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" + "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.3.0", + "version": "0.1.18-preview", + "requiredAzdVersion": "\u003e1.23.6", "capabilities": [ "custom-commands", "lifecycle-events", - "mcp-server" + "mcp-server", + "service-target-provider", + "metadata" ], - "usage": "azd demo \u003ccommand\u003e [options]", - "examples": [ - { - "name": "context", - "description": "Displays the current `azd` project \u0026 environment context.", - "usage": "azd demo context" - }, + "providers": [ { - "name": "prompt", - "description": "Display prompt capabilities.", - "usage": "azd demo prompt" - }, + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent \u003ccommand\u003e [options]", + "examples": [ { - "name": "mcp", - "description": "Start MCP server with demo tools.", - "usage": "azd demo mcp start" + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "2149dde360286e9010a6263d1c2e4b89424546bf771469aa72bb5918c2746795" + "value": "c0afd0d07300bff164c2cb46a7b08646ec61501e5dc4bbdc7b5e29246a3875ab" }, - "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" + "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": "aea875c6dede186a751455cc08b127dc88c7309d228f9190b7bc404c7d073279" + "value": "9579621bfbd39baacc8f95cfecc2443e4e47c6eff7eeaaadbbb4de5815a250ed" }, - "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" + "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": "5eb11742c212a1ea517fd4672ef8a4cc32fd54586caf2f442e640420e0e1bf5b" + "value": "25a7d89e61eda8f08ae08f467b198dccc17e5c5b5384e6c3a92113e653fb1584" }, - "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" + "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": "32fc27795bf26d0d20dc6e67c4354b68ec0af5afce225a63307521fdea200c60" + "value": "90d2b4611311c20179168ddeac0d70083c7106cc0ae0eb692a37dbfc36f922f0" }, - "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" + "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": "c0ce8cb4049f5a4a30e815f9332352d1cc2d46e5cab437cb4aa257174f0e4f99" + "value": "e9fc6877f6e32fcac6e58e9988491eb8ea059ccf25c68dc5f8b213a4d149f7c7" }, - "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" + "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": "9b4ae4aa10b2e35bbd4248c3fcf2f0ce1c81937248a8eccb79dc782411ea17b0" + "value": "a860745c473a8b98b57f05cb051fed3fdcd6229065a6b914240d7ffbaa448b44" }, - "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" + "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.4.0", + "version": "0.1.19-preview", + "requiredAzdVersion": "\u003e1.23.6", "capabilities": [ "custom-commands", "lifecycle-events", "mcp-server", "service-target-provider", - "framework-service-provider" + "metadata" ], "providers": [ { - "name": "demo", + "name": "azure.ai.agent", "type": "service-target", - "description": "Deploys application components to demo" + "description": "Deploys agents to the Foundry Agent Service" } ], - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd ai agent \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" + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d955061b14ca788a398f5e89e66f0a22f431d0660ff14c11264301856ea3e0db" + "value": "efebbb67a0437da9ad67191500a6caa0fb28d3f84093bac39d2356a2412dd3ce" }, - "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" + "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": "61b088773af2d2690f2429235894c749ec0db22dfc79cab93f5b768457805d3c" + "value": "2dda1a039c61dbd45c73251eed5c0b90aafe4345086e0d31cb2f152d80e94e4a" }, - "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" + "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": "d929b42b5e3eeff51e6b59775302a4625cd880b9a0fc6c30daae9eb964b41cd8" + "value": "de9491add21ea593e8b2714b7b23bf3eb249bd0088e0323b1fb787c26d8db952" }, - "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" + "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": "d6b4eae71c96bf7b73e9669c918918b738659d426315880c265fd5cef2ebbb28" + "value": "4227ed50d60ee71978447e6d5218acd06c9a4e97b45584e1f76a7159df1752f8" }, - "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" + "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": "dd52a10207ca1e401494257e0a435c1844a72fe052af1bbafec8cbaadc1302e2" + "value": "816416f8b5e7a4cf9d5235aca1f140f170caec9cdcb26b0d3854340bcd3b7edd" }, - "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" + "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": "4dc82efddac26fb79b011c2d22ffc05be49470f8170e56fdeee686f2266bb34d" + "value": "7c34d427b278f3cc33adfc8592acd5fb638dcead55fdb80c24a8ae220d5d03b1" }, - "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" + "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.5.0", + "version": "0.1.20-preview", + "requiredAzdVersion": "\u003e1.23.6", "capabilities": [ "custom-commands", "lifecycle-events", "mcp-server", "service-target-provider", - "framework-service-provider", "metadata" ], "providers": [ { - "name": "demo", + "name": "azure.ai.agent", "type": "service-target", - "description": "Deploys application components to demo" + "description": "Deploys agents to the Foundry Agent Service" } ], - "usage": "azd demo \u003ccommand\u003e [options]", + "usage": "azd ai agent \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" + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "74b087ae3cf41541591b73ba2a8956c17b93424bb9337aced0d7dfeaaeea377a" + "value": "7ebdead1c9f6a5e4ed4ecb619654d7cd2167043207d545f2340285b5bf73896e" }, - "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" + "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": "98be11366cda5f9d8ec3c4facc505ebbe51d86490285076a7d15a5651d1cb07e" + "value": "27deab2e9eeb91d34e3c7a6767bdaa62b5ee69ed766f1029dbb4d51b025cd2db" }, - "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" + "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": "1adc16944a58854a760feb7aafa2edf9fc6bb0bf2db33c6a6ffd24765918ebc7" + "value": "5888303efb6e2d67e41b5d78d592b4a8d3097077e6f20267a87d0ea88bd0a438" }, - "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" + "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": "9de313914549f6e7c6fc111df23a31d599eda468f0c0f2e9c5e8eebd859a4e92" + "value": "973c938ed1945e745337495978262b13f5fb8aa64718f75f7411669aba713db5" }, - "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" + "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": "1ec350924e40f161db5bd181fbc9f6431230d0f124cc32889d4d4a68dda816ee" + "value": "d41544242411dd4b9f2bfca45e66717740ca5ec324de22e45ff1551d71ee74b5" }, - "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" + "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": "752f5721129ed0dac25d2304b3a0394551a35514b84db3ffa2d5046f5e529982" + "value": "5f18fae3cc684582b2cd87262c51fad69db16d6514d792f117b2c0f0d831d701" }, - "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" + "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" } } } ] }, { - "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.", + "id": "microsoft.azd.concurx", + "namespace": "concurx", + "displayName": "Concurx", + "description": "Concurrent execution for azd deployment", "versions": [ { - "version": "0.4.2", + "version": "0.0.1", "capabilities": [ "custom-commands" ], - "usage": "azd x \u003ccommand\u003e [options]", - "examples": [ - { - "name": "init", - "description": "Initialize a new AZD extension project.", - "usage": "azd x init" + "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" }, - { - "name": "build", - "description": "Build the AZD extension project.", - "usage": "azd x build" + "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" }, - { - "name": "pack", - "description": "Package the AZD extension project into a distributable format and add to local registry.", - "usage": "azd x pack" + "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" }, - { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "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" }, - { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "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": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + "value": "cbd6ab2b8406654bf8b715ef4471085027f2e94fd820dd8678541a39348467d9" }, - "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" + "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": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + "value": "0381abfffe4a1586a9c57f023819c8655c0aacf518b5da7fef5b1907b0efe1a9" }, - "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" + "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": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + "value": "fb00169ae47b919d874bb34518cea2a38c55124084b9c841da8e1e498e925048" }, - "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" + "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": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + "value": "74e5673ac35945c9255bf8d62d9da3356dc89ad0a7034413238984b7ada4ff14" }, - "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" + "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": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + "value": "d2b7931be0763304a822b92dc540df8b93a66beaaad706884ce349cd66235b09" }, - "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" + "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": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + "value": "315ef7fa448361d2963902296786d649ba394f233cad7769878ca1b7b9f3e76a" }, - "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" + "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.5.0", + "version": "0.1.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" - } + "custom-commands", + "metadata" ], + "usage": "azd concurx \u003ccommand\u003e [options]", + "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + "value": "9e07a877dbc98e918a85e0da30d2dd6edf53203dccae613c44fa9ee5dd071720" }, - "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" + "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": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + "value": "75635e244a56a8822ce523fbfb8d448b1ff6c18cbd00f7679535e7bc08c43435" }, - "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" + "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": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + "value": "35180086ea5b5c0b6fda8490a84dac3f4ab1d81afbf7ee326ee81dc46d28212c" }, - "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" + "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": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + "value": "9d12aafa43c6dc5cfd2343a11b0a5cdfa4cc35ae3cf2fc65103b09a3711592f2" }, - "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" + "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": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + "value": "1d1d49b72a50c15628e3960730be00b4aa70b0a33ce29ecbf586bf7236b617a6" }, - "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" + "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": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + "value": "3ca2b2ec04eac82bcad707030b0763cdd4c8a7b19701bf359b87861e47055f0c" }, - "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" + "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.5.1", + "version": "0.0.8-preview", "capabilities": [ "custom-commands" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd ai finetuning \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" + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + "value": "f0df54c64465c910e801ee362b9140aaaa5a2c04deb860e9b0c9b73b16ee2e99" }, - "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" + "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": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + "value": "a928c0fb26cef21e66da3471245927b07f1e652ad7f3779bfbb339f54fb1b17f" }, - "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" + "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": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + "value": "49e97d289db8fddd0d7e7a19de5056125b48b337d8765422d1a0cf9999176ed8" }, - "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" + "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": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + "value": "8f466e84d5b46c3d746a2b44ac823363045bd9cb37a352852bf7cacc8df9f8ba" }, - "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" + "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": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + "value": "3559dba2bf318c606f0045e924ecafd2c9874b4111dc4cc99606d0f0df198e5f" }, - "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" + "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": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + "value": "d14f81b9dec2dfa6dabdb829ec958cae495005248722a4a5d038ac11236eae57" }, - "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" + "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.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" - }, + } + }, + { + "version": "0.0.9-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "examples": [ { - "name": "release", - "description": "Create a new release of the AZD extension project to a GitHub repository.", - "usage": "azd x release" + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "c78800b88d7010be996357f0fd823b557b98dcd4ad03c37ba740bcfa798af691" + "value": "90b18b9e15429b7fe10d6eb0dbe9e882cf95a06e9be3a127657653a4ff6755b3" }, - "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" + "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": "81d05b3f09a20c02f5ff95e6733a365aec26fde247018d1226a6bf7d1fad475e" + "value": "7be2843e419c2e7d16f849110c2b659fa5230135a2f52ccd151fbd7e3f3aeb64" }, - "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" + "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": "e224f538bc1c8882dfffe8b3719bdbb23e8a300c2b1b17213a7741eb95d260f2" + "value": "1fbedf42d4bd61f68d62df58f21b62a9a4d500870da0ac90ac55d4c6eb02f11c" }, - "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" + "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": "7032f59e5a35b1400a3e586786bdfb9e6c7a06c6be3528ee57fc7327cfcd41dc" + "value": "d76e9c78bbf453d00f39404ebe5786f351e3394b1ab33e710d2d7f261d61c9bd" }, - "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" + "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": "544dd88bbda18f80d24a2cde9bd48a5fb14d710ac30b830792f9cec6daf96115" + "value": "ae99e9336650abcb39fe41621380986cda125dae266d5b976306df182f2c0ef7" }, - "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" + "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": "b4cfa9e6ec1d63f1486007455b67fa91c8930ada99df6dcd58d42d5f781190b1" + "value": "e9ccf8b5a0bde6d4e2fe30a96736c5187bd85ebe4d1f1d9c7aff921a830152f0" }, - "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" + "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.7.0", + "version": "0.0.10-preview", "capabilities": [ - "custom-commands" + "custom-commands", + "metadata" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd ai finetuning \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" + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "70de5bed03991d9bc7905e8b60665fec423c9b81cb6e4527cab720f52c229560" + "value": "10bc56cf745a0df21ab337db0a2aebd5a55c65458afa81ed664cd002f83a032b" }, - "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" + "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": "108c2661e36da5bebf5ab98ea0c0bbd2aa1cdd35703e321f22ea9b0d9cdcfa18" + "value": "06ba9167f7b1c03675e6e48912bb648b88051ea756e133eda01303e20f0e07ef" }, - "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" + "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": "d3524de84401cedecfe42ea8909ea0e4d5ff3363c36d8a6a89dfcf7a15580baa" + "value": "3edbe0e557e4d7ea7f5eec86ce75e70d92c23c78118ec5bdfd54e73587e6ec57" }, - "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" + "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": "9f871c80875f591a188c8e8ad05bae01a9ceea3fdb6ee3c04abaaeb22868d9b3" + "value": "da44f050daf9ad24249590ac03cd77439c326d8a62eac90a999fe6d891f2b115" }, - "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" + "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": "1a0c672841a9ed839c69655e467144bc3244169a00f2d70e2decdbe58e2d34fb" + "value": "549f38ab95351ce6f1087f697fb5e091554bbb91e91bcb6ef062c0fd7d35b038" }, - "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" + "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": "38693fd9ecb02847195f2c23e3ea9c3aa12ab84192b64999cd0d3e0c299aeadb" + "value": "8b66caed2ef381a682206385f475af1be7d73084500d089455d7408e2e442987" }, - "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" + "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.7.1", + "version": "0.0.11-preview", "capabilities": [ - "custom-commands" + "custom-commands", + "metadata" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd ai finetuning \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" + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d301b37411b82d7d58a0ef40a41b8a941624f93e075697328f24e09177c8ce60" + "value": "46750b2bc3cc1cf956dd8a4f485b6405a09f96fe9139a626b9524aef7d5f9fbd" }, - "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" + "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": "289ef95281803ce270c59d7d204a1e0582ec7b90200cee6c351e1a124ab19f8b" + "value": "17886e9bed1183cc34eee5b572978de6f9a5c9475c909c59ca3ede3b8235fe3a" }, - "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" + "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": "59d71e51c7a0c1776d4c43f2a98c7728440cfe76a392849bdb8f9da914018a04" + "value": "a86ffe0ad0e40aac95dc14bb681df34f85d1d89f4eb7f2bf16de94b64c66e65b" }, - "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" + "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": "6d91fa6a478441a1ba8f852eb7aa333ef8c3f369be609e0bab56984c6da5db84" + "value": "bd4c04e5080a3ebb3dcbff7930ef4dd4ef10e5a6078c8e023059111c6a4d0392" }, - "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" + "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": "20585d0509ef2bf6b6b1987344f1d386e3a3093f0c3faf52ab3870c30fc511ef" + "value": "b201586d99138ec8439f14e72fb30bac320b36e8c9c1c16e28e7f3c5c655bb1d" }, - "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" + "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": "ee33c49e08d37d367d0fca05ecc86236b6a4473e5283bdfb97c7d42b0c75bb09" + "value": "1048b8b996101f350538d2a9990adfa967076d19fc8417bc77bbc90a53cc6da6" }, - "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" + "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.9.0", + "version": "0.0.12-preview", "capabilities": [ "custom-commands", "metadata" ], - "usage": "azd x \u003ccommand\u003e [options]", + "usage": "azd ai finetuning \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" + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" }, { - "name": "watch", - "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", - "usage": "azd x watch" + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d9872101b53a03ee97fdb294095f6eaf6de9a4fb7d97214b0bdce331f1720ce4" + "value": "ff7f95ae6d5c76bccf2bf8163cd6567623c4ed146c7f407861d659f731735fce" }, - "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" + "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": "037e59508b5405f79f5b9c3a70277c63b0646ab50bcf40f06a8220d265a8a312" + "value": "f76f01ac2589a3a093d15b0764cfa76fdc31a07f1f4b275f02747597ebcb4bd5" }, - "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" + "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": "a517ce280ab5256df79233be6a464ad7bba16aa70b5bc0a61de6e40f47c812bc" + "value": "f896747ec311826af1f00acaf5817ec66ca4d80f6b50b93ceaf6c335f172cc99" }, - "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" + "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": "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" + "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": "59ce6817fa902c38c7d3bb4b98ce4221209de42f95a894875008c64aea7ad300" + "value": "e2ad79ef1095ec218dda38f01360572e36ebaba98da415e2d18fa42cd9681a7b" }, - "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" + "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": "6bc9a2671bfb1176b7b1e522e96483ce030fb3f686f2c56f24c0e5b5c36729b3" + "value": "52d6cfc59a3c5490bf675704b7f3b1693f463ee8474366b91c35f154b0c32df8" }, - "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" + "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" } } - } - ] - }, - { - "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", + "version": "0.0.14-preview", "capabilities": [ - "custom-commands" + "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" + } ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "71999ce6b4a67986c0166d0cd886aa447b6acd27115caa5d20d3dbc9e594bb01" + "value": "1a65073f9033cf3d49ac3c923c2d4d9db4ec3cb21f7a8c49c65c455db982eeb0" }, - "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" + "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": "2372d84cd1c76d04d691f2c464d1166ee6f7082d6dc23ba94214ddee060754de" + "value": "0ea4ef79e506e99ae62904856738d558a414e0c46172011d16b197641191b288" }, - "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" + "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": "665dc43d204f6afc8f50b4cc1e1cd05b777ce98b8c31a5d4b93c769b907d5edd" + "value": "9e058d1e6be9b466042fc60de1e2304446078ea3757db9fcb99db9f3b495da3c" }, - "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" + "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": "34cbe6b5dc0f5713e5558ce180c9a14056ee3d07d0520179470e076d26c02fae" + "value": "02eb90b366585a974cccafed6436a0a3f973fe47bd7fd1b9233c8d59da652977" }, - "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" + "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": "54ec94a92595a9d347eca3fb4c8fa6f757acd9da0e7f0b51f3cd2521785dca4f" + "value": "4a649358724ae6f06d75da91b8393afb6d66390d5e6f9be3a6b228b8b640fc7b" }, - "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" + "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": "a1c0eaf60677eaefaec854082ee0561286f74962c9cc2593e10b757252bb6e75" + "value": "4bcf1b36b245b60557108e897e6dc08e8df014517da6971f014bc81c6e01c8e2" }, - "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" + "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.5.1", + "version": "0.0.16-preview", "capabilities": [ - "custom-commands" + "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" + } ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "964de9002e4b08100714275e23167047fd5621c8fb0efed029b0ed3d1a96420a" + "value": "5f00ab549630eaa4b329a2a1487ce5d05a1dc4b5db8de39bf10894a0ae18a32b" }, - "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" + "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": "ad455dce44b4fcb059ef65f9ff24ec92524bd1eac7a916592650d1d046669502" + "value": "0c68b7625052a4352adc0686dd7feb5754d1fa8f9b09a3eb65c9ce29cf04fe6b" }, - "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" + "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": "df33da60669e3080f59ee3d6cbd673bf0d88c2b21e14e09e77d7098ba128816a" + "value": "286176e9fa3af919950e302971f88bbed737a4a6ac6306f05e998380de78a2d7" }, - "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" + "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": "33fac7f5bcb4c98356df3eb1d4cdb7148c6771dc036d142ac8b7e1e29d19acd5" + "value": "28896339658f6d0f686faa3739873425d0ceb9b504fc1bc31453a42691d4c95a" }, - "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" + "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": "ae16e0dad1e2a0cc1fbb72a29d88382f012b3afc49eb641d168d35bf348478b1" + "value": "a55fabe4683ec60eabb571985e5a1004792971d72392cf03c75d7ca0ce404040" }, - "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" + "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": "25a45e2c22b864c6e68055a3648a73f9349de4f3a57fa7b716fb959a90b85e3c" + "value": "f65f11d6b772de036353d4b24ffb2235b83e938775f5256b072406cc9b56cafc" }, - "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" + "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.5.2", + "version": "0.0.17-preview", "capabilities": [ - "custom-commands" + "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" + } ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "8eacae357e2863775df67cbc5de9016767ccc5a557bf6c581a10d8b1a561ae68" + "value": "9337e7097479e80d563df018fc8099003d5500d7304c0d7eae238266870a9996" }, - "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" + "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": "8f941c3605f4439a48ffe142d075af80918e3539f207b91fa9a5bd5ef6597167" + "value": "79be23975c148b1cf7918316fd02da63ec87b925485c25189b434be7df36c4bc" }, - "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" + "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": "7e27d8d1a424027fdb8b5540a2aef9383fb09deff14339c15cf426a0c2330e1e" + "value": "330cfd1aa5af8c73d3fdaa86d36d4f0f2c7d072cab8136916a8360f0bcf8d197" }, - "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" + "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": "8e4cd57e8da4226627f4d8fbb57985810257ff7e620fb4d09eeedb092d9752b3" + "value": "f40fe397120d965de80cbf3278fb7cce74b816f174e2fc77ea50de97f986d229" }, - "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" + "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": "3caf51c197cce0ef20ecb82c40208938f2cacc757fd0b32d2dff74bdcd61f45e" + "value": "12434209e2009ef68d8974eaf1a57926204c084057a0dd418d213cc3c32c73a0" }, - "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" + "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": "cefd5193d58840b02f4d66093a13be33b271622953c2a455fc153e6660ee9932" + "value": "fa51bc324fda2672bf863b8d0adb427d734fe266d842b4ba8365c1fa0daf5143" }, - "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" + "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.6.0", + "version": "0.0.1-preview", "capabilities": [ "custom-commands", "metadata" ], - "usage": "azd coding-agent \u003ccommand\u003e [options]", - "examples": null, + "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": "7edcff645fb411fd322fd5e05c82288a810fbe2455669f98c5744cf2b7426ccd" + "value": "8880a66bfa3a1f4e2bacecb0250c5e1f9123efbe1ee3dff9d0fbdd5b936b789b" }, - "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" + "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": "5a0850febf78b2c2d5cd5c834129f0c98e2f62b0482a3e876810d2798fc0878e" + "value": "6727395151f92024a04fcc6014670825c2acd1f71770206f85538d5d3f2dfc8c" }, - "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" + "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": "d67bc4a7f1c092527f0be5ec8d99adc97f75c9e36cb1bc53afceafc271f260bd" + "value": "584a0182197f8da11500f554b6ff2cd6b7c1fc06871832cdcf6465e7d8a3cf9c" }, - "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" + "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": "f509b72b62d204fae8de8af43c292790e14dfbf7f960dfe4c8a53e0dd60258e9" + "value": "346bd40ed1a12273adece0533ba7ccd847e3849ce24130124b644e85b5835c42" }, - "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" + "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": "d9de087dc438281bd471d4d2a50146a9d4a430d97f3d473f97b1d21f34a0b07f" + "value": "7f2425f5ebe080df17b28d01b77d14805ab72ef1250365086ce464c6d5749bce" }, - "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" + "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": "cbb2fb1b527367f21112831fed3eaa458971ad2fe706bb6a7adab830a38958f5" + "value": "6356178c246cc7db2d9b26ffacb60614581bb2657f61c57d56406bf4999a15e8" }, - "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" + "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" } } - } - ] - }, - { - "id": "azure.ai.agents", - "namespace": "ai.agent", - "displayName": "Foundry agents (Preview)", - "description": "Extension for the Foundry Agent Service. (Preview)", - "versions": [ + }, { - "version": "0.0.6", + "version": "0.0.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" - } + "metadata" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd ai models \u003ccommand\u003e [options]", "examples": [ { "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent 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": "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" + "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": "dd76870363590f07fdf3573d108bf6ec8305e1c34eee3169a5878e056505cd96" + "value": "3f30e0ae33541d857d799b089f9e2a9d86f97ff729fb14d207deb4e468d327af" }, - "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" + "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": "3687c1402cfa9fb9e4c9c704b033d977b317bdc1566f8588713fe91894062727" + "value": "a0a64a188ade94a54cbcaa9b785c769076758fee596d44f13428f0955f9756a0" }, - "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" + "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": "39dc586c923ddaf12e7a2369263670c39130be8754089feaef492e6048c849a2" + "value": "8f6e39b71a30715c498a0747ca9fd63f37adfc9bfcb4177d974a160824c989ab" }, - "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" + "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": "f2dcfed5bcb816d84ac2de15c574cc2e8ba14a2611a4627b0a8725682fa041b6" + "value": "392c6b8c2d5d11c3a69d66218f1553010d7fd9334a7324791339cdd7c77a4f5f" }, - "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" + "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": "88bbf844c8126d205764fdace0f0602fd0b2ca5d74ab815fcf6052b371338b9f" + "value": "3f6b74e4eef1fd12d3af0064c9696c4c02f2970477d213ec51c72f7361e2cd24" }, - "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" + "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.7", + "version": "0.0.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." - } + "metadata" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd ai models \u003ccommand\u003e [options]", "examples": [ { "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent 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": "529bf037aa00b425993d2b60a69e166f06901ff55c27c81792aae1b157c9219e" + "value": "f2f41da14b974822f8d75aab595ee99577923817b679be587b5b82de238173bb" }, - "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" + "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": "e1faceba27c3d299edbaa98ab76e44d37862c7e503f32b73f60b1c81c9f27cea" + "value": "3a155a25bd071319312ab21aec60ee4bd74e265131355f50aede525212a95876" }, - "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" + "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": "51cedd928156febc984e5f01be4d8c571c0e4348bda88bfa7883fd08ba2d91a2" + "value": "daeab7a467679f96a2d1cee756ad80d4f311a331318919e7b6e7058924347db7" }, - "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" + "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": "2587c7d6fbb713fd50f5d954e50c39f6b97868f8a74d0124edea6cacf5ad061b" + "value": "8517e796c4bdaa0ea264dda2a47369fca2155a45e7cc38745e723e5a4bd5cbcf" }, - "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" + "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": "a973a38f06b17815fc2bf447f8efbe9bad29025caefc90b3ecdbeb64a86e206e" + "value": "597a43f4a1dcb0fc8ea4136736d872f0eb9da33a1abec8eb2c9928941c0c0a50" }, - "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" + "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": "b2f00ec525e292d3ea6cb2b46c93051ddb9ca9816a900643c0c5a0b6ae823c21" + "value": "2f3af40fd4d877b835252cea9004ecbea6df37ded619ac88179ac731e4301763" }, - "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" + "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.1.0-preview", + "version": "0.0.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." - } + "metadata" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd ai models \u003ccommand\u003e [options]", "examples": [ { "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent 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": "056559c98e57616f03b79b529e8b4bbd194d5f41709a2c390d7226acb5975eb0" + "value": "b4ff833b38bd4f1614b2d1b649c03c3db27f31558aeb006bebf4712b6ebfe37b" }, - "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" + "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": "74590ec13f42df6a83d7b87286c56a13d5c0136266e7b133bd3501f0cfc834e2" + "value": "6901bc3563843ba475feb46897e9fcf7a75f84a2cda2e3ce468ad28d2a527bae" }, - "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" + "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": "5bf7f7add058e7188b85cd1ec0c64b9e701ab41b09f1fefd1bc9968f988ae5c0" + "value": "140975c5153696f820bc36649755922c7893d49c230bbbe2a23eb3372a4043ab" }, - "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" + "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": "658d29f454c8fd0d0125bcc3a29ad9d4c60c3c1f463c2f424d90484eb681a366" + "value": "1476d0b061027f708cf00113ca503cebbdf850c268b7376cfd2936d1bd233a28" }, - "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" + "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": "e3f6b41d2188eaa1b675ddb80af56baac8b5d90431baacf15113ea5a472fa6f2" + "value": "7e95ec6caf91c64b7eb69a809e0d78fe46ea797b6994ca34f4ef78da10ababe4" }, - "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" + "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": "33f17854250565ccf9c190a8106b12be2995e5f4da33d799a285985158f13d5d" + "value": "a778236b3412163d73574d298d345bd27819a3b3e3985503a7ec4097a135ef97" }, - "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" + "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.1-preview", + "version": "0.1.0", "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." - } + "metadata" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "usage": "azd appservice \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "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": "ba7bb03a49d72fc7a7e7c407a1dcd929b5e471f7c3a39b1d2d12c077f46a6939" + "value": "556e61f1cccb7fe30018c0a8e4bea6a5c2dfeacae280cace3884df14ae5b9757" }, - "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" + "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": "41bf5fb808ed9e9f35e593afb6b730da045a67856caee37df75c4d36b17e6de7" + "value": "702c687a99fb5465a0ccce2ca5f0827e0da2d8e7a39ff86f1a0361296bb80a47" }, - "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" + "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": "543e77c4196f75dbe10de53083e2de0f09845d9e1b862f745bafed607e49b80d" + "value": "2fb4efb9e2dfdbfa9ad1d54483213d38dec19361343eeb75615353a7d93a3448" }, - "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" + "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": "b6624b2946dbae69638e40305ba3b576539413e3a8c2cbb2f6ca5d6d0ae5a7f2" + "value": "69204c40496bff0d6677ab8eb811d20173806a588b8f89572ab38157328c812a" }, - "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" + "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": "4f96fca89b236c435acb44b72758b154d9bde3a51d7de8a600cc8006c540a3b4" + "value": "2306b741af14700cd65cb6efe16adac4050c7c84413c7dd74376c40e952dc1ee" }, - "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" + "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": "a3228008738c50113dbe745ea2676107e35d829e444c0ef8af5ca60bae44d074" + "value": "fc08097662690218d2ab4a42d2bb634b4ec05722fdfaf9f97b30b5b570f5a790" }, - "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" + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 20:03:22 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 20:08:22 GMT + Source-Age: + - "29" + 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: + - abf9d6028cc1eb5a1fcb2411f920b18b610680eb + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760091-MIA + X-Timer: + - S1775765002.150493,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 18.026292ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 20:03:22 GMT + Expires: + - Thu, 09 Apr 2026 20:03:22 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 118.654416ms + - id: 172 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ { - "version": "0.1.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" - } + "lifecycle-events" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "version": "0.1.0-beta.1", + "usage": "azd demo \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" + "name": "context", + "description": "Displays the current `azd` project \u0026 environment context.", + "usage": "azd demo context" }, - "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" + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "2b5a065bf221bf1df09c1db384daaecf1855156e6f0690fb3671bef4c026104c" + "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" }, - "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" + "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": "b6df8f0aada9f1f942ca144301f915ab6a47dc5b0c9588a6f2eb5fa5df088e20" + "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" }, - "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" + "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": "ae1e4b6a9db29b878bdedbecb3fef542e10c166d8096ac4d8db10acb225f2821" + "value": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" }, - "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" + "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": "e0b530151be2e212eae528fa05e9c18002d08f6aabec0ba599c3773e5ae0e808" + "value": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" }, - "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" + "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": "88521aacfa86ef7c2291760c713a7c1ec4ad215aad3880949ed9c75cfaf3c97e" + "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" }, - "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" + "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": "1faa940eb4bbe184a638d39ee9edfba645f0294b256c955a6b296874d41a04c6" + "value": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" }, - "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" + "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.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" - } + "lifecycle-events" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "version": "0.2.0", + "usage": "azd demo \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "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": "7e6254a22f58c428c433fc763668eba1117d071f48e246201f1e558c376efefe" + "value": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" }, - "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" + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "4b851f18e2a6da956fbc0ff963d07cea6a82010c89204abe3a5ce06eee15ff07" + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" }, - "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" + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "bf780cd9490a8dbc5ef834193e4108bc406b7a9342c944fb076d8aecbf8c7dec" + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" }, - "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" + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "cdb9674d53eee5517fcfc4514cc1cc0ec8116ec8699950afedf4203d1687c65b" + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" }, - "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" + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "fb44e21b0211f3ec0200ca4ae9dd972b49f112e190547d09527d92c9d6756ae6" + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" }, - "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" + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "ed513d182eaee078def74fe23f3f2fa3a04acf90a59f22165cd5628b077db8ab" + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" }, - "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" + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" } } - }, + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ { - "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" - } + "custom-commands" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "42bbc048f0c3b9bae4f6ade74a3ffff60c65d5ae44b96673234b6cdf135ad34a" + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "141cd0cf795ed292c8349bb7959404abafc65c38dc30e4f50d6eb9b619787dc8" + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "bcd08ff98d33cef16cef1e70317def7ec48bc005a9776680d169ee686e650a45" + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "6136a93aed132cd8e96d5332278a6d79dcad2f5aa10ae86f4a8c5d274017e816" + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "c1105cee5a3e11fab42ff6aa8722c48506c293e97e484c47b9a1d67aad45e653" + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "35a5cf98d074bfb7f1a4536b89b4913a6fde1057a8c4a46f35e51d0c6a6412bd" + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" } + } + }, + { + "capabilities": [ + "custom-commands" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent init" + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "d7c4e93bd2970072501d249f3f9cd06132b5095638f8bb618a560776c2d1502a" + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "e1d5d49a748aa848074d304dabf5a24f6f0f24ff9d56128a2cdb7c3fe917fee2" + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "81b04da0ea9002de1e12783be3de80d9d08cd85eefb90ddf12eb07ab1bebdd07" + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "5af0f6a8e4a384a4e4d6fdf32824c3b659ffb3032c65854d2a09cc74aad4e6cf" + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b11ed749d1abc0d9e10d4652d78017542d2a505028de1c41a385a0cbcb9790a9" + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "f2e07ab85442b30521ddf22b9d712e45a584e949a9e68edcc39a62ad0db03f68" + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" }, - "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" + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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.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" - } + "custom-commands" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "version": "0.2.0", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent 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 an 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": "4d1dc48a79c4b556e1f0d0659c1d6cf62ea871398685a556c3420144bfd59bcc" + "value": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "6eaa2f273333a1d097afcac3e9d66272f36e14175262ee14095c184477bf87f7" + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "32d8057b43e59a7e730ac4a05102843c1435beb57a893f894b89203d0673bec4" + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "d71239ef290d9e8ac6a37b57b3789f93de5f780320835944740db2dd86ae71c4" + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "7cafa0ef09e5e9753f2f4dac6146a7e2eeac9c351f0cea8f75780161412a6b44" + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "e16b920ba65394d664792f09378e882e365b37b5e10bb908ae57774ec7e59022" + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-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" - } + "custom-commands" ], - "usage": "azd ai agent \u003ccommand\u003e [options]", + "version": "0.3.0", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { "name": "init", - "description": "Initialize a new AI agent project.", - "usage": "azd ai agent 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 an 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": "c31376d787c451ab3262310649a55e5419abba98a24201f70378ce16ef670361" + "value": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "437e35394a96169c2525b06a5792e4cc660cbbb361e480ca499b3ea86a31df6d" + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "82852e4523a8a961e308259dba23800715802270eebd5cd92af0228485f816fc" + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "2719ce8b649d21cb5186908d974e79f1852543bdd2412a4b6ec1ee6a2fb0e4ef" + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "9c74fcb69b734954c05292f7be9ee2afe6feb4536898f35244e3dd3365db5188" + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "608b08e206d53749313d6b2b30ab20c2b3288ca088c8ddbaad367802460b2e5c" + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-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, + "version": "0.4.0", + "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 an 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": "91aee92ffa7fa3942d7935421090d3d9a3e11ef349bd055ecc192f797e3c7550" + "value": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "8c57a10fa99f708d8d2239dbf2d9da054779d8d4d1722fe7594604163e9fc5ce" + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "49610ff4ce2c68fed22f8b5104df210a2fb193e5602fd257278b89b692d9a6d6" + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "ed0f6d1b7de9f1f377db8a61e02d4a1e77e14f1bd85ee56cd2102003a1826e93" + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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" }, - "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" + { + "name": "release", + "description": "Create an new release of the AZD extension project to a Github repository.", + "usage": "azd x release" }, - "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" + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" } - } - }, - { - "version": "0.0.2", - "capabilities": [ - "custom-commands", - "metadata" ], - "usage": "azd concurx \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "cbd6ab2b8406654bf8b715ef4471085027f2e94fd820dd8678541a39348467d9" + "value": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "0381abfffe4a1586a9c57f023819c8655c0aacf518b5da7fef5b1907b0efe1a9" + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" }, - "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" + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "fb00169ae47b919d874bb34518cea2a38c55124084b9c841da8e1e498e925048" + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "74e5673ac35945c9255bf8d62d9da3356dc89ad0a7034413238984b7ada4ff14" + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" }, - "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" + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "d2b7931be0763304a822b92dc540df8b93a66beaaad706884ce349cd66235b09" + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "315ef7fa448361d2963902296786d649ba394f233cad7769878ca1b7b9f3e76a" + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" }, - "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" + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" } } }, { - "version": "0.1.0", "capabilities": [ - "custom-commands", - "metadata" + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } ], - "usage": "azd concurx \u003ccommand\u003e [options]", - "examples": null, "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "9e07a877dbc98e918a85e0da30d2dd6edf53203dccae613c44fa9ee5dd071720" + "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" }, - "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" + "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": "75635e244a56a8822ce523fbfb8d448b1ff6c18cbd00f7679535e7bc08c43435" + "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" }, - "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" + "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": "35180086ea5b5c0b6fda8490a84dac3f4ab1d81afbf7ee326ee81dc46d28212c" + "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" }, - "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" + "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": "9d12aafa43c6dc5cfd2343a11b0a5cdfa4cc35ae3cf2fc65103b09a3711592f2" + "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" }, - "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" + "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": "1d1d49b72a50c15628e3960730be00b4aa70b0a33ce29ecbf586bf7236b617a6" + "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" }, - "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" + "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": "3ca2b2ec04eac82bcad707030b0763cdd4c8a7b19701bf359b87861e47055f0c" + "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" }, - "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" + "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" } } - } - ] - }, - { - "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]", + "version": "0.5.0", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "description": "Initialize a new AZD extension project.", + "usage": "azd x init" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "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 an 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": "f0df54c64465c910e801ee362b9140aaaa5a2c04deb860e9b0c9b73b16ee2e99" + "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" }, - "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" + "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": "a928c0fb26cef21e66da3471245927b07f1e652ad7f3779bfbb339f54fb1b17f" + "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" }, - "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" + "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": "49e97d289db8fddd0d7e7a19de5056125b48b337d8765422d1a0cf9999176ed8" + "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" }, - "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" + "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": "8f466e84d5b46c3d746a2b44ac823363045bd9cb37a352852bf7cacc8df9f8ba" + "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" }, - "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" + "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": "3559dba2bf318c606f0045e924ecafd2c9874b4111dc4cc99606d0f0df198e5f" + "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" }, - "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" + "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": "d14f81b9dec2dfa6dabdb829ec958cae495005248722a4a5d038ac11236eae57" + "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" }, - "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" + "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.0.9-preview", "capabilities": [ "custom-commands" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "version": "0.5.1", + "usage": "azd x \u003ccommand\u003e [options]", "examples": [ { "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "description": "Initialize a new AZD extension project.", + "usage": "azd x init" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "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 an 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": "90b18b9e15429b7fe10d6eb0dbe9e882cf95a06e9be3a127657653a4ff6755b3" + "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" }, - "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" + "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": "7be2843e419c2e7d16f849110c2b659fa5230135a2f52ccd151fbd7e3f3aeb64" + "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" }, - "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" + "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": "1fbedf42d4bd61f68d62df58f21b62a9a4d500870da0ac90ac55d4c6eb02f11c" + "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" }, - "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" + "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": "d76e9c78bbf453d00f39404ebe5786f351e3394b1ab33e710d2d7f261d61c9bd" + "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" }, - "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" + "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": "ae99e9336650abcb39fe41621380986cda125dae266d5b976306df182f2c0ef7" + "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" }, - "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" + "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": "e9ccf8b5a0bde6d4e2fe30a96736c5187bd85ebe4d1f1d9c7aff921a830152f0" + "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" }, - "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" + "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" } } - }, + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 20:03:22 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 20:08:22 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 2e2f793a6fbc3576b040d5a367eaf9f465747067 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760091-MIA + X-Timer: + - S1775765002.307268,VS0,VE106 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 122.022458ms + - id: 173 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ { - "version": "0.0.10-preview", + "version": "0.1.1", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "usage": "azd doctor [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "10bc56cf745a0df21ab337db0a2aebd5a55c65458afa81ed664cd002f83a032b" + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "06ba9167f7b1c03675e6e48912bb648b88051ea756e133eda01303e20f0e07ef" + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "3edbe0e557e4d7ea7f5eec86ce75e70d92c23c78118ec5bdfd54e73587e6ec57" + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "da44f050daf9ad24249590ac03cd77439c326d8a62eac90a999fe6d891f2b115" + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "549f38ab95351ce6f1087f697fb5e091554bbb91e91bcb6ef062c0fd7d35b038" + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "8b66caed2ef381a682206385f475af1be7d73084500d089455d7408e2e442987" + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" } } }, { - "version": "0.0.11-preview", + "version": "0.1.0", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "usage": "azd doctor [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "46750b2bc3cc1cf956dd8a4f485b6405a09f96fe9139a626b9524aef7d5f9fbd" + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "17886e9bed1183cc34eee5b572978de6f9a5c9475c909c59ca3ede3b8235fe3a" + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "a86ffe0ad0e40aac95dc14bb681df34f85d1d89f4eb7f2bf16de94b64c66e65b" + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "bd4c04e5080a3ebb3dcbff7930ef4dd4ef10e5a6078c8e023059111c6a4d0392" + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "b201586d99138ec8439f14e72fb30bac320b36e8c9c1c16e28e7f3c5c655bb1d" + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "1048b8b996101f350538d2a9990adfa967076d19fc8417bc77bbc90a53cc6da6" + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" } } }, { - "version": "0.0.12-preview", + "version": "0.0.5", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "usage": "azd doctor [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "ff7f95ae6d5c76bccf2bf8163cd6567623c4ed146c7f407861d659f731735fce" + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "f76f01ac2589a3a093d15b0764cfa76fdc31a07f1f4b275f02747597ebcb4bd5" + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "f896747ec311826af1f00acaf5817ec66ca4d80f6b50b93ceaf6c335f172cc99" + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "1b6010d393fd8ccc737d76f2f39d16001ded8fd162850af1b04179b1d56283a4" + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "e2ad79ef1095ec218dda38f01360572e36ebaba98da415e2d18fa42cd9681a7b" + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "52d6cfc59a3c5490bf675704b7f3b1693f463ee8474366b91c35f154b0c32df8" + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" } } }, { - "version": "0.0.14-preview", + "version": "0.0.2", "capabilities": [ "custom-commands", - "metadata" + "lifecycle-events" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "usage": "azd doctor [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "1a65073f9033cf3d49ac3c923c2d4d9db4ec3cb21f7a8c49c65c455db982eeb0" + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "0ea4ef79e506e99ae62904856738d558a414e0c46172011d16b197641191b288" + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "9e058d1e6be9b466042fc60de1e2304446078ea3757db9fcb99db9f3b495da3c" + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "02eb90b366585a974cccafed6436a0a3f973fe47bd7fd1b9233c8d59da652977" + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "4a649358724ae6f06d75da91b8393afb6d66390d5e6f9be3a6b228b8b640fc7b" + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "4bcf1b36b245b60557108e897e6dc08e8df014517da6971f014bc81c6e01c8e2" + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" } } }, { - "version": "0.0.16-preview", + "version": "0.0.1", "capabilities": [ - "custom-commands", - "metadata" + "custom-commands" ], - "usage": "azd ai finetuning \u003ccommand\u003e [options]", + "usage": "azd doctor [options]", "examples": [ { - "name": "init", - "description": "Initialize a new AI fine-tuning project.", - "usage": "azd ai finetuning init" + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" }, { - "name": "deploy", - "description": "Deploy AI fine-tuning job to Azure.", - "usage": "azd ai finetuning deploy" + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" } ], "artifacts": { "darwin/amd64": { "checksum": { "algorithm": "sha256", - "value": "5f00ab549630eaa4b329a2a1487ce5d05a1dc4b5db8de39bf10894a0ae18a32b" + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" }, "darwin/arm64": { "checksum": { "algorithm": "sha256", - "value": "0c68b7625052a4352adc0686dd7feb5754d1fa8f9b09a3eb65c9ce29cf04fe6b" + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" }, "linux/amd64": { "checksum": { "algorithm": "sha256", - "value": "286176e9fa3af919950e302971f88bbed737a4a6ac6306f05e998380de78a2d7" + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" }, "linux/arm64": { "checksum": { "algorithm": "sha256", - "value": "28896339658f6d0f686faa3739873425d0ceb9b504fc1bc31453a42691d4c95a" + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" }, - "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" + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" }, "windows/amd64": { "checksum": { "algorithm": "sha256", - "value": "a55fabe4683ec60eabb571985e5a1004792971d72392cf03c75d7ca0ce404040" + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" }, "windows/arm64": { "checksum": { "algorithm": "sha256", - "value": "f65f11d6b772de036353d4b24ffb2235b83e938775f5256b072406cc9b56cafc" + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" }, - "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" + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" } } } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" ] } ] @@ -15911,7 +30123,7 @@ interactions: Cache-Control: - max-age=300 Content-Length: - - "123955" + - "16828" Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: @@ -15919,11 +30131,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Wed, 18 Feb 2026 01:05:47 GMT + - Thu, 09 Apr 2026 20:03:22 GMT Etag: - - W/"37c325649d7b6d713326ebe2cc5cb913723860f8eda978fe359375f4febe1e02" + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - Wed, 18 Feb 2026 01:10:47 GMT + - Thu, 09 Apr 2026 20:08:22 GMT Source-Age: - "0" Strict-Transport-Security: @@ -15939,21 +30151,21 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-Id: - - d23e60668d07ab96dd17e797307749fa18fb5c27 + - 4863232aa81984f438b78d5f771404a23610102d X-Frame-Options: - deny X-Github-Request-Id: - - D04E:14E6A2:5AD30:76505:6994746B + - E072:2F6A22:7FEE2:965AC:69D7C890 X-Served-By: - - cache-bfi-krnt7300073-BFI + - cache-mia-kmia1760091-MIA X-Timer: - - S1771376747.439589,VS0,VE65 + - S1775765002.442102,VS0,VE92 X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 - duration: 113.836687ms + duration: 116.16675ms --- -env_name: azdtest-l2ebf26 -subscription_id: 4d042dc6-fe17-4698-a23f-ec6a8d1e98f4 -time: "1771374846" +env_name: azdtest-d23239f +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775762551" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_FuncApp.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_FuncApp.yaml index eb5e3c3cb9e..5c53922dd71 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_FuncApp.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_FuncApp.yaml @@ -9,23 +9,19 @@ 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 User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -33,43 +29,3264 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 138770 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "47415" + - "138770" + 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: - - Mon, 12 Jan 2026 22:16:43 GMT + - Thu, 09 Apr 2026 19:17:44 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:22:44 GMT + Source-Age: + - "175" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - aa00d973-7e23-409e-a769-9bc429aecc3b - X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221643Z:aa00d973-7e23-409e-a769-9bc429aecc3b - X-Msedge-Ref: - - 'Ref A: 3893C563B73640CBA53207D435A47564 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:16:41Z' + X-Fastly-Request-Id: + - 7a11460e747a8148afcb90545fd1819d01b7218a + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762265.954462,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 2.12806375s + duration: 148.366292ms - id: 1 request: proto: HTTP/1.1 @@ -78,67 +3295,55 @@ 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.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?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/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1757647 + content_length: 0 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=NY9db4IwGEZ%2fC73GhKIkC3diq276tmt5y9LdGWWGj5Rkw4AY%2fvvGNu6ek%2bfcnAc5N64t3O3UFo3DpsrdF4kf5I2naNJwmi7v29fTZ1tMxiG%2fk5hQ78kTaHsY7IL4v4Zuuvmjy9DT1TYBdu2UeWdg1EqwJNGsZirItmB4IDBhCrONwMuHpkIe06CTzPx4EEpmByifV5JVEQznCO5UYdC%2fKFpznSWAtBbaREaW2Q7QUlHCUpS2l%2bxKAdUAzHaAfEFGnwipcb%2fhAvX6aFISu1td%2b%2f91M5lDKg3uZ%2bTrKf2PxvEb","value":[]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "1757647" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Mon, 12 Jan 2026 22:16:49 GMT + - Thu, 09 Apr 2026 19:17:45 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 19:17:45 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 613dac23-eba7-463a-9d80-4041dc1052c7 - X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221649Z:613dac23-eba7-463a-9d80-4041dc1052c7 - X-Msedge-Ref: - - 'Ref A: 5417CE87CC194F05874DBF4B846FD45A Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:16:43Z' - status: 200 OK - code: 200 - duration: 5.844878542s + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 240.081792ms - id: 2 request: proto: HTTP/1.1 @@ -147,7 +3352,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -157,11 +3362,11 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=NY9db4IwGEZ%2FC73GhKIkC3diq276tmt5y9LdGWWGj5Rkw4AY%2FvvGNu6ek%2BfcnAc5N64t3O3UFo3DpsrdF4kf5I2naNJwmi7v29fTZ1tMxiG%2Fk5hQ78kTaHsY7IL4v4Zuuvmjy9DT1TYBdu2UeWdg1EqwJNGsZirItmB4IDBhCrONwMuHpkIe06CTzPx4EEpmByifV5JVEQznCO5UYdC%2FKFpznSWAtBbaREaW2Q7QUlHCUpS2l%2BxKAdUAzHaAfEFGnwipcb%2FhAvX6aFISu1td%2B%2F91M5lDKg3uZ%2BTrKf2PxvEb&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 @@ -169,43 +3374,4338 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 264237 + content_length: 195006 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=VY%2fBboJAFEW%2fhVlLMoMladgBg9XqvCnDezR2Zyw1VDIkLYYphn%2bv1rJweXLvuck9s31ru9qedl3dWmyPlf1m0Zm9ZgVSEbDInppm9o%2fza2Ir173svrr6KqyrHxYx4T16gFunhq3PZn8N0%2fZTJuaBZ46LRMlDn9ObVJQ%2fgEwSIxuZ83KhKOOAicyxTAHfP4wAvSl4ryVdeirQuBIK9w7kKlSDCiAVOXL3nIsmM2WiUDRgKCT9WT6BjB0MJC5uCJK4QuUADxxi32fjjGXx3S3QBpdpBmjiDRX3ZyeidaEJlxPeFm40jr8%3d\u0026api-version=2021-04-01","value":[]}' + 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" + } + } + } + ] + }, + { + "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: - - "264237" + - "195006" + 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: - - Mon, 12 Jan 2026 22:16:51 GMT + - Thu, 09 Apr 2026 19:17:45 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:22:45 GMT + Source-Age: + - "175" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - e306c244-beef-4fcc-ac27-d0fea2685207 - X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221652Z:e306c244-beef-4fcc-ac27-d0fea2685207 - X-Msedge-Ref: - - 'Ref A: 5AD359BCECF64975854EB5E7D01EBCA8 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:16:50Z' + X-Fastly-Request-Id: + - 0b56c5bcf37e1233b5e887974c3d5dce3bf821e0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762265.243252,VS0,VE6 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 1.974578416s + duration: 28.655916ms - id: 3 request: proto: HTTP/1.1 @@ -214,7 +7714,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -225,10 +7725,67 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=VY%2FBboJAFEW%2FhVlLMoMladgBg9XqvCnDezR2Zyw1VDIkLYYphn%2Bv1rJweXLvuck9s31ru9qedl3dWmyPlf1m0Zm9ZgVSEbDInppm9o%2Fza2Ir173svrr6KqyrHxYx4T16gFunhq3PZn8N0%2FZTJuaBZ46LRMlDn9ObVJQ%2FgEwSIxuZ83KhKOOAicyxTAHfP4wAvSl4ryVdeirQuBIK9w7kKlSDCiAVOXL3nIsmM2WiUDRgKCT9WT6BjB0MJC5uCJK4QuUADxxi32fjjGXx3S3QBpdpBmjiDRX3ZyeidaEJlxPeFm40jr8%3D&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 19:17:45 GMT + Expires: + - Thu, 09 Apr 2026 19:17:45 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 57.759875ms + - id: 4 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json method: GET response: proto: HTTP/2.0 @@ -236,128 +7793,1448 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 41722 uncompressed: false - body: '{"value":[]}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "12" + - "41722" + 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: - - Mon, 12 Jan 2026 22:16:53 GMT + - Thu, 09 Apr 2026 19:17:45 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:22:45 GMT + Source-Age: + - "175" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - c73c2fcf-72c8-4a2d-a28f-6826707566c5 - X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221653Z:c73c2fcf-72c8-4a2d-a28f-6826707566c5 - X-Msedge-Ref: - - 'Ref A: 12AF7D4F8586476BA75497D76D43624D Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:16:53Z' + X-Fastly-Request-Id: + - 3aff54821c0056983abb6b195c226c9d34d951a5 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762265.356698,VS0,VE6 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 594.657166ms - - id: 4 + duration: 24.896375ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 6912 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-db2277e","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":"2950367126166403802"}},"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":"1115355894536619571"}},"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":"2023-12-01","name":"[format(''{0}/{1}'', format(''func-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"AzureWebJobsStorage__accountName":"[format(''st{0}'', variables(''resourceToken''))]"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites","apiVersion":"2023-12-01","name":"[format(''func-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"functionapp,linux","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''func''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":false,"functionAppConfig":{"deployment":{"storage":{"type":"blobContainer","value":"[format(''{0}{1}'', reference(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), ''2022-05-01'').primaryEndpoints.blob, ''func-deploy'')]","authentication":{"type":"SystemAssignedIdentity"}}},"scaleAndConcurrency":{"maximumInstanceCount":100,"instanceMemoryMB":2048},"runtime":{"name":"python","version":"3.11"}}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices/containers'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"Standard_LRS"},"kind":"Storage","properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2025-01-01","name":"[format(''{0}/{1}'', format(''st{0}'', variables(''resourceToken'')), ''default'')]","dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts/blobServices/containers","apiVersion":"2025-01-01","name":"[format(''{0}/{1}/{2}'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","properties":{"publicAccess":"None"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices'', format(''st{0}'', variables(''resourceToken'')), ''default'')]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'', ''full'').identity.principalId]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b'')]","principalType":"ServicePrincipal"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2023-12-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"functionapp","sku":{"tier":"FlexConsumption","name":"FC1"},"properties":{"reserved":true}}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_FUNCTION_URI.value]"}}}},"tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "6912" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196/validate?api-version=2021-04-01 - method: POST + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2898 + content_length: 16828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"},"properties":{"templateHash":"2950367126166403802","parameters":{"environmentName":{"type":"String","value":"azdtest-db2277e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-12T23:16:54Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-12T22:16:54.1665406Z","duration":"PT0S","correlationId":"ef1cc409200f16fa16c9cbc455eb7eb8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-db2277e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu/config/appsettings"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/providers/Microsoft.Authorization/roleAssignments/1327ccfa-a2df-5400-9b65-f6d7db8c4a2a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu"}]}}' + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "2898" + - "16828" + 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: - - Mon, 12 Jan 2026 22:16:55 GMT + - Thu, 09 Apr 2026 19:17:45 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:22:45 GMT + Source-Age: + - "174" 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: + - "0" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - 2da8ad58-94aa-4be7-ad17-27820e36a26d - X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221655Z:2da8ad58-94aa-4be7-ad17-27820e36a26d - X-Msedge-Ref: - - 'Ref A: AC90D6604D394E6A88043601634F9A24 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:16:53Z' + X-Fastly-Request-Id: + - 8860b7f24a7af7d1eaf3f4a3fc7581aebd7b376a + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762265.393605,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 1.795375333s - - id: 5 + duration: 18.829125ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 6912 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-db2277e","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":"2950367126166403802"}},"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":"1115355894536619571"}},"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":"2023-12-01","name":"[format(''{0}/{1}'', format(''func-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"AzureWebJobsStorage__accountName":"[format(''st{0}'', variables(''resourceToken''))]"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites","apiVersion":"2023-12-01","name":"[format(''func-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"functionapp,linux","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''func''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":false,"functionAppConfig":{"deployment":{"storage":{"type":"blobContainer","value":"[format(''{0}{1}'', reference(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), ''2022-05-01'').primaryEndpoints.blob, ''func-deploy'')]","authentication":{"type":"SystemAssignedIdentity"}}},"scaleAndConcurrency":{"maximumInstanceCount":100,"instanceMemoryMB":2048},"runtime":{"name":"python","version":"3.11"}}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices/containers'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"Standard_LRS"},"kind":"Storage","properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2025-01-01","name":"[format(''{0}/{1}'', format(''st{0}'', variables(''resourceToken'')), ''default'')]","dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts/blobServices/containers","apiVersion":"2025-01-01","name":"[format(''{0}/{1}/{2}'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","properties":{"publicAccess":"None"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices'', format(''st{0}'', variables(''resourceToken'')), ''default'')]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'', ''full'').identity.principalId]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b'')]","principalType":"ServicePrincipal"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2023-12-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"functionapp","sku":{"tier":"FlexConsumption","name":"FC1"},"properties":{"reserved":true}}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_FUNCTION_URI.value]"}}}},"tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"}}' + body: "" form: {} headers: Accept: @@ -366,36 +9243,30 @@ interactions: - gzip Authorization: - SANITIZED - Content-Length: - - "6912" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196?api-version=2021-04-01 - method: PUT + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1411 + content_length: 47870 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"},"properties":{"templateHash":"2950367126166403802","parameters":{"environmentName":{"type":"String","value":"azdtest-db2277e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-12T23:16:56Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-12T22:16:56.4990023Z","duration":"PT0.0001483S","correlationId":"ef1cc409200f16fa16c9cbc455eb7eb8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-db2277e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196/operationStatuses/08584333506689655799?api-version=2021-04-01&t=639038530193584190&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=JQSKvtEAZH-OEeR2LITrSar0qbOb_-UjTis5KAGVQZ3aQQqXTnTBSFQ2G6tHa8wSz-UBHDy4J04eONjeKPrxrXZnu9Kg6U59dN4Pu6ROGdncVQ1dO6fHVCmjZWvFPHGAnhvNrcHVCrBkE4X6fw6H2m-NAWZiqJ74DX3CpqD1nAsnqFiaQfnX0ZwDr4SyQ_1vSBfZ2-X1jH0gPoVrgDHQHRg-5tKN4twEpVcWaiRPGI6YIWcYYkeOAVjun8MbZkz7bP9TOam_fA00j624OGsgKRdvno5wxG9gAfBmROAvTZYVpgzTWkXzd4RmL4BDd8gwglEweeemuDIIdDjGZUjgzw&h=nLvxpGApgBnSTnZ2H7jfnoLgIqCi2Vh81tqBm0XB79c Cache-Control: - no-cache Content-Length: - - "1411" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:16:59 GMT + - Thu, 09 Apr 2026 19:17:50 GMT Expires: - "-1" Pragma: @@ -407,23 +9278,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - X-Ms-Deployment-Engine-Version: - - 1.560.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 72175673-82f3-400c-833b-4e52ee3211d0 + - 3cd5c1ac-e2f9-4365-8ab3-e7612e1534c8 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221659Z:72175673-82f3-400c-833b-4e52ee3211d0 + - EASTUS2:20260409T191750Z:3cd5c1ac-e2f9-4365-8ab3-e7612e1534c8 X-Msedge-Ref: - - 'Ref A: 6CC28AB88C6146A99EABC34481560C04 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:16:55Z' - status: 201 Created - code: 201 - duration: 3.799832s - - id: 6 + - 'Ref A: 572B7BABA5094CDB9350CE042093C986 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:17:49Z' + status: 200 OK + code: 200 + duration: 2.641937916s + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -437,15 +9306,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196/operationStatuses/08584333506689655799?api-version=2021-04-01&t=639038530193584190&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=JQSKvtEAZH-OEeR2LITrSar0qbOb_-UjTis5KAGVQZ3aQQqXTnTBSFQ2G6tHa8wSz-UBHDy4J04eONjeKPrxrXZnu9Kg6U59dN4Pu6ROGdncVQ1dO6fHVCmjZWvFPHGAnhvNrcHVCrBkE4X6fw6H2m-NAWZiqJ74DX3CpqD1nAsnqFiaQfnX0ZwDr4SyQ_1vSBfZ2-X1jH0gPoVrgDHQHRg-5tKN4twEpVcWaiRPGI6YIWcYYkeOAVjun8MbZkz7bP9TOam_fA00j624OGsgKRdvno5wxG9gAfBmROAvTZYVpgzTWkXzd4RmL4BDd8gwglEweeemuDIIdDjGZUjgzw&h=nLvxpGApgBnSTnZ2H7jfnoLgIqCi2Vh81tqBm0XB79c + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -453,18 +9324,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 956898 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "956898" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:00 GMT + - Thu, 09 Apr 2026 19:17:54 GMT Expires: - "-1" Pragma: @@ -476,21 +9347,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 + - cc51b8935c2aed48aed4b21d02d85021 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ee6163fd-ab9b-4a94-9809-06f0bffce3ce + - 682f66d2-edce-409c-9925-44c4bd5de939 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260112T221800Z:ee6163fd-ab9b-4a94-9809-06f0bffce3ce + - EASTUS2:20260409T191754Z:682f66d2-edce-409c-9925-44c4bd5de939 X-Msedge-Ref: - - 'Ref A: C0BAE29A76C542408B8120D19EB070B1 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:00Z' + - 'Ref A: 88FAEA1C9F1A45AC906C5E5C24F21E27 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:17:50Z' status: 200 OK code: 200 - duration: 908.030917ms - - id: 7 + duration: 3.60546325s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -509,10 +9380,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196?api-version=2021-04-01 + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -520,18 +9391,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2864 + content_length: 888517 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"},"properties":{"templateHash":"2950367126166403802","parameters":{"environmentName":{"type":"String","value":"azdtest-db2277e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-12T23:16:56Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-12T22:17:59.3751285Z","duration":"PT1M2.8761262S","correlationId":"ef1cc409200f16fa16c9cbc455eb7eb8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-db2277e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-nqneps3tsi5gu.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/providers/Microsoft.Authorization/roleAssignments/1327ccfa-a2df-5400-9b65-f6d7db8c4a2a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu/config/appsettings"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2864" + - "888517" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:01 GMT + - Thu, 09 Apr 2026 19:17:57 GMT Expires: - "-1" Pragma: @@ -543,21 +9414,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 + - cc51b8935c2aed48aed4b21d02d85021 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0c758d29-4001-4112-a6d1-9266927b10bd + - bb094985-fabb-4ac5-88a0-231ce9fe6864 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221801Z:0c758d29-4001-4112-a6d1-9266927b10bd + - EASTUS:20260409T191757Z:bb094985-fabb-4ac5-88a0-231ce9fe6864 X-Msedge-Ref: - - 'Ref A: FC93AE3E525240BC85BCDD74E26D6DEA Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:01Z' + - 'Ref A: 186425F1F84D4D0B9FEDD9E03C83A973 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:17:54Z' status: 200 OK code: 200 - duration: 496.708708ms - - id: 8 + duration: 2.864500709s + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -571,17 +9442,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-db2277e%27&api-version=2021-04-01 + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -589,18 +9458,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 515084 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","name":"rg-azdtest-db2277e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","DeleteAfter":"2026-01-12T23:16:56Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:01 GMT + - Thu, 09 Apr 2026 19:17:59 GMT Expires: - "-1" Pragma: @@ -612,21 +9481,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ef1cc409200f16fa16c9cbc455eb7eb8 + - cc51b8935c2aed48aed4b21d02d85021 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - 77e640cc-1606-43fe-a55f-10321b4e61d8 + - 79172051-9fab-4987-8cca-e46b5a480144 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221802Z:77e640cc-1606-43fe-a55f-10321b4e61d8 + - EASTUS:20260409T191759Z:79172051-9fab-4987-8cca-e46b5a480144 X-Msedge-Ref: - - 'Ref A: 993FBA30EF564B46B7497A0982C484BE Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:02Z' + - 'Ref A: 1BC3AE8B6EBC45A88B04B8F0B0AF6E87 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:17:57Z' status: 200 OK code: 200 - duration: 462.784334ms - - id: 9 + duration: 1.826925709s + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -640,17 +9509,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-db2277e%27&api-version=2021-04-01 + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -658,18 +9525,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 415580 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","name":"rg-azdtest-db2277e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","DeleteAfter":"2026-01-12T23:16:56Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:02 GMT + - Thu, 09 Apr 2026 19:18:00 GMT Expires: - "-1" Pragma: @@ -681,21 +9548,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e + - cc51b8935c2aed48aed4b21d02d85021 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e9245ea5-1602-4529-bd8a-326cb36cf888 + - caec104c-e1f7-41e9-b8c3-8059900b6aa7 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221802Z:e9245ea5-1602-4529-bd8a-326cb36cf888 + - EASTUS2:20260409T191800Z:caec104c-e1f7-41e9-b8c3-8059900b6aa7 X-Msedge-Ref: - - 'Ref A: 16244C395FC740B6B759F085F4153675 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:02Z' + - 'Ref A: 37879ED289A24C25A516C4944A5F6D37 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:17:59Z' status: 200 OK code: 200 - duration: 94.386541ms - - id: 10 + duration: 884.446583ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -709,17 +9576,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27func%27&api-version=2021-04-01 + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -727,18 +9592,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 483 + content_length: 136970 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu","name":"func-nqneps3tsi5gu","type":"Microsoft.Web/sites","kind":"functionapp,linux","managedBy":"","location":"eastus2","identity":{"principalId":"35ec44c6-09f4-4d89-9cf8-1f6d791e7787","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"}}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "483" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:02 GMT + - Thu, 09 Apr 2026 19:18:00 GMT Expires: - "-1" Pragma: @@ -750,21 +9615,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e + - cc51b8935c2aed48aed4b21d02d85021 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 42fd9243-7a48-4fd5-a675-d80b2e262271 + - d4183142-1418-49b9-80f1-11ba0f0ee6a8 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221803Z:42fd9243-7a48-4fd5-a675-d80b2e262271 + - EASTUS:20260409T191801Z:d4183142-1418-49b9-80f1-11ba0f0ee6a8 X-Msedge-Ref: - - 'Ref A: 36A572C50F6744C6A5ED8D2AC17FBD7C Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:02Z' + - 'Ref A: 86AB63521BF44ACFA2309C52CCCA5706 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:18:00Z' status: 200 OK code: 200 - duration: 439.931958ms - - id: 11 + duration: 510.831583ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -785,10 +9650,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-db2277e%27&api-version=2021-04-01 + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=assignedTo('6c37e0ec-712d-4900-a73f-bcfd17630788') method: GET response: proto: HTTP/2.0 @@ -796,18 +9661,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 39026 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","name":"rg-azdtest-db2277e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","DeleteAfter":"2026-01-12T23:16:56Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-02-11T20:25:48.1490444Z","updatedOn":"2025-02-11T20:25:48.1490444Z","createdBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","updatedBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fc14d582-d744-4057-927e-b2ac56269010","type":"Microsoft.Authorization/roleAssignments","name":"fc14d582-d744-4057-927e-b2ac56269010"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-04-29T20:00:09.1204889Z","updatedOn":"2025-04-29T20:00:09.1204889Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fcf6514a-ec92-4579-b376-985ed789af99","type":"Microsoft.Authorization/roleAssignments","name":"fcf6514a-ec92-4579-b376-985ed789af99"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-05-12T20:59:23.1044444Z","updatedOn":"2025-05-12T20:59:23.1044444Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/e1b4ed65-90d5-4575-9fab-a15e8dd8bc67","type":"Microsoft.Authorization/roleAssignments","name":"e1b4ed65-90d5-4575-9fab-a15e8dd8bc67"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","condition":null,"conditionVersion":null,"createdOn":"2025-10-17T23:58:29.8971266Z","updatedOn":"2025-10-17T23:58:29.8971266Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385/providers/Microsoft.Authorization/roleAssignments/29bfa47e-c62a-42f2-b8eb-2bb43b0d0663","type":"Microsoft.Authorization/roleAssignments","name":"29bfa47e-c62a-42f2-b8eb-2bb43b0d0663"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/e79298df-d852-4c6d-84f9-5d13249d1e55","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025","condition":null,"conditionVersion":null,"createdOn":"2025-10-21T16:32:22.3532519Z","updatedOn":"2025-10-21T16:32:22.3532519Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025/providers/Microsoft.Authorization/roleAssignments/f009b370-f0d7-521f-8190-eaaa9291fcec","type":"Microsoft.Authorization/roleAssignments","name":"f009b370-f0d7-521f-8190-eaaa9291fcec"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","condition":null,"conditionVersion":null,"createdOn":"2026-01-16T22:29:38.5035324Z","updatedOn":"2026-01-16T22:29:38.5035324Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg/providers/Microsoft.Authorization/roleAssignments/b9a7d332-61f1-4436-a054-b0a07f45cba3","type":"Microsoft.Authorization/roleAssignments","name":"b9a7d332-61f1-4436-a054-b0a07f45cba3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:17:17.9080051Z","updatedOn":"2026-01-20T23:17:17.9080051Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.Authorization/roleAssignments/a6fcb9dd-5363-4ac1-ad09-52da2646918a","type":"Microsoft.Authorization/roleAssignments","name":"a6fcb9dd-5363-4ac1-ad09-52da2646918a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:22:41.7902463Z","updatedOn":"2026-01-20T23:22:41.7902463Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":"Granted by Microsoft Foundry vscode extension"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr/providers/Microsoft.Authorization/roleAssignments/4f9e750e-a959-4089-99a9-735d93d6ae69","type":"Microsoft.Authorization/roleAssignments","name":"4f9e750e-a959-4089-99a9-735d93d6ae69"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.7220122Z","updatedOn":"2026-01-22T18:42:31.7220913Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/7a576f9c-2657-5b4d-83ba-6d7b8564e2c3","type":"Microsoft.Authorization/roleAssignments","name":"7a576f9c-2657-5b4d-83ba-6d7b8564e2c3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.8056446Z","updatedOn":"2026-01-22T18:42:31.6002825Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9","type":"Microsoft.Authorization/roleAssignments","name":"d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:34:36.2184216Z","updatedOn":"2026-01-22T18:43:19.5451992Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog/providers/Microsoft.Authorization/roleAssignments/bf48cd73-5652-58b3-a891-31cd689a8e83","type":"Microsoft.Authorization/roleAssignments","name":"bf48cd73-5652-58b3-a891-31cd689a8e83"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.6412744Z","updatedOn":"2026-01-23T00:14:55.3413202Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/605b3e65-590a-52b0-9b57-7e2487bd436e","type":"Microsoft.Authorization/roleAssignments","name":"605b3e65-590a-52b0-9b57-7e2487bd436e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.7479302Z","updatedOn":"2026-01-23T00:14:55.3524082Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582","type":"Microsoft.Authorization/roleAssignments","name":"cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:10:15.5696850Z","updatedOn":"2026-01-23T00:15:36.5819142Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq/providers/Microsoft.Authorization/roleAssignments/64540a60-8bcc-52bc-b884-c13515038ba2","type":"Microsoft.Authorization/roleAssignments","name":"64540a60-8bcc-52bc-b884-c13515038ba2"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:55.0166898Z","updatedOn":"2026-01-23T20:54:28.1016796Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/fc8334ec-8bea-5e02-9b4f-43cff42c7bed","type":"Microsoft.Authorization/roleAssignments","name":"fc8334ec-8bea-5e02-9b4f-43cff42c7bed"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:54.9912109Z","updatedOn":"2026-01-23T20:54:28.0149087Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/b3341787-0a98-5dd5-a2e0-1756e8c57bde","type":"Microsoft.Authorization/roleAssignments","name":"b3341787-0a98-5dd5-a2e0-1756e8c57bde"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:55:21.3666642Z","updatedOn":"2026-01-23T20:55:21.3666642Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6/providers/Microsoft.Authorization/roleAssignments/4655cef5-9977-5346-a5d2-c27b33dc17c5","type":"Microsoft.Authorization/roleAssignments","name":"4655cef5-9977-5346-a5d2-c27b33dc17c5"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker","condition":null,"conditionVersion":null,"createdOn":"2026-01-27T00:12:51.6587791Z","updatedOn":"2026-01-27T00:12:51.6587791Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker/providers/Microsoft.Authorization/roleAssignments/13fdc017-b129-4d12-886e-97e8bca4c8e4","type":"Microsoft.Authorization/roleAssignments","name":"13fdc017-b129-4d12-886e-97e8bca4c8e4"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1146962Z","updatedOn":"2026-02-14T18:04:18.3583138Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/81290285-4b15-5d3f-b731-9e4f39716269","type":"Microsoft.Authorization/roleAssignments","name":"81290285-4b15-5d3f-b731-9e4f39716269"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1665151Z","updatedOn":"2026-02-14T18:04:18.4095322Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/94dd26ea-5dd1-5807-9af0-6f3b8810c40b","type":"Microsoft.Authorization/roleAssignments","name":"94dd26ea-5dd1-5807-9af0-6f3b8810c40b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:59:35.4573312Z","updatedOn":"2026-02-14T18:04:59.6101897Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi/providers/Microsoft.Authorization/roleAssignments/8290a893-c6ce-5d7f-8746-5b61055a672d","type":"Microsoft.Authorization/roleAssignments","name":"8290a893-c6ce-5d7f-8746-5b61055a672d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","condition":null,"conditionVersion":null,"createdOn":"2026-02-24T03:36:34.6591990Z","updatedOn":"2026-02-24T03:36:34.6591990Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts/providers/Microsoft.Authorization/roleAssignments/b9d7628f-5576-4018-9b5f-85fc24be672e","type":"Microsoft.Authorization/roleAssignments","name":"b9d7628f-5576-4018-9b5f-85fc24be672e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:31:40.1699479Z","updatedOn":"2026-02-25T01:31:40.1699479Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/b8b1f75a-96ba-5d7d-8205-4f794293e324","type":"Microsoft.Authorization/roleAssignments","name":"b8b1f75a-96ba-5d7d-8205-4f794293e324"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:32:07.3700484Z","updatedOn":"2026-02-25T01:32:07.3700484Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/73d453e9-cd90-55bc-a3f0-078c8f1b8e30","type":"Microsoft.Authorization/roleAssignments","name":"73d453e9-cd90-55bc-a3f0-078c8f1b8e30"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9707032Z","updatedOn":"2026-02-25T02:49:12.4889489Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/4cfa7055-b330-58ac-bea4-cf0e72abc5ff","type":"Microsoft.Authorization/roleAssignments","name":"4cfa7055-b330-58ac-bea4-cf0e72abc5ff"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9847168Z","updatedOn":"2026-02-25T02:49:12.4949681Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/101bfda6-41d9-58c6-9a16-6f25f4c4b131","type":"Microsoft.Authorization/roleAssignments","name":"101bfda6-41d9-58c6-9a16-6f25f4c4b131"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:01:58.9795499Z","updatedOn":"2026-02-25T02:01:58.9795499Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa/providers/Microsoft.Authorization/roleAssignments/a9fd7947-ba84-599e-838d-6cd22f42ef7a","type":"Microsoft.Authorization/roleAssignments","name":"a9fd7947-ba84-599e-838d-6cd22f42ef7a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.7648061Z","updatedOn":"2026-03-26T06:17:02.7648061Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/90857788-3534-5da8-abbd-fb99df7e632d","type":"Microsoft.Authorization/roleAssignments","name":"90857788-3534-5da8-abbd-fb99df7e632d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.9211819Z","updatedOn":"2026-03-26T06:17:02.9211819Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/a787ed5b-1f87-59c7-8497-fcc47882dc25","type":"Microsoft.Authorization/roleAssignments","name":"a787ed5b-1f87-59c7-8497-fcc47882dc25"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:18:03.4450814Z","updatedOn":"2026-03-26T06:18:03.4450814Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6/providers/Microsoft.Authorization/roleAssignments/1b32d9b6-8672-55e1-af60-2843979b5d11","type":"Microsoft.Authorization/roleAssignments","name":"1b32d9b6-8672-55e1-af60-2843979b5d11"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.7149469Z","updatedOn":"2026-03-30T21:14:24.1352264Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/daf6cddc-461e-5507-80ac-1b47d025defe","type":"Microsoft.Authorization/roleAssignments","name":"daf6cddc-461e-5507-80ac-1b47d025defe"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.6762167Z","updatedOn":"2026-03-30T21:14:24.0212102Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/bc1a2d3e-657b-58a6-bae0-9eae55ff066e","type":"Microsoft.Authorization/roleAssignments","name":"bc1a2d3e-657b-58a6-bae0-9eae55ff066e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:21:05.2722976Z","updatedOn":"2026-03-30T21:15:04.1182545Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb","type":"Microsoft.Authorization/roleAssignments","name":"e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s","condition":null,"conditionVersion":null,"createdOn":"2026-03-30T20:15:50.2225745Z","updatedOn":"2026-03-30T21:15:15.0669190Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s/providers/Microsoft.Authorization/roleAssignments/138eaa02-7015-5714-93f6-0b60642a6f76","type":"Microsoft.Authorization/roleAssignments","name":"138eaa02-7015-5714-93f6-0b60642a6f76"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:49:49.8204393Z","updatedOn":"2026-04-01T14:49:49.8204393Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/396fa00a-f149-4187-b64e-a4dba132425b","type":"Microsoft.Authorization/roleAssignments","name":"396fa00a-f149-4187-b64e-a4dba132425b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:50:53.6495590Z","updatedOn":"2026-04-01T14:50:53.6495590Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/b086de43-a12f-4221-9202-ae3a60639a80","type":"Microsoft.Authorization/roleAssignments","name":"b086de43-a12f-4221-9202-ae3a60639a80"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:51:49.4986139Z","updatedOn":"2026-04-01T14:51:49.4986139Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/37715462-b5e0-4018-b28e-64dc5e6c6f66","type":"Microsoft.Authorization/roleAssignments","name":"37715462-b5e0-4018-b28e-64dc5e6c6f66"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:53:45.2400140Z","updatedOn":"2026-04-01T14:53:45.2400140Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e0fa3920-df78-405a-b221-43d93dfa6e3f","type":"Microsoft.Authorization/roleAssignments","name":"e0fa3920-df78-405a-b221-43d93dfa6e3f"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:13:01.0359883Z","updatedOn":"2026-04-01T15:13:01.0359883Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/26250363-3add-4120-a6d1-6cdfae07365d","type":"Microsoft.Authorization/roleAssignments","name":"26250363-3add-4120-a6d1-6cdfae07365d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:14:22.4283237Z","updatedOn":"2026-04-01T15:14:22.4283237Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/48ccbbc9-bfdb-459b-b687-b612d9e042a4","type":"Microsoft.Authorization/roleAssignments","name":"48ccbbc9-bfdb-459b-b687-b612d9e042a4"}]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "39026" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:03 GMT + - Thu, 09 Apr 2026 19:18:03 GMT Expires: - "-1" Pragma: @@ -819,21 +9684,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/c0476aa4-6c01-47f9-8549-735765071e78 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4680699a-c017-4a18-b904-0a3b66d2e198 + - ba29d26c-7a93-4989-a76e-49fc1d4b3f49 X-Ms-Routing-Request-Id: - - EASTUS2:20260112T221803Z:4680699a-c017-4a18-b904-0a3b66d2e198 + - EASTUS:20260409T191803Z:30d1429d-a473-4584-9cb5-61f0059251d7 X-Msedge-Ref: - - 'Ref A: FF5B1CE0451E4B5CB311FB89C98391F7 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:03Z' + - 'Ref A: 5738BFF6124548F9811DFCD165A5626C Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:18:02Z' status: 200 OK code: 200 - duration: 138.518834ms - - id: 12 + duration: 531.275625ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -854,10 +9721,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27func%27&api-version=2021-04-01 + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635?api-version=2022-04-01 method: GET response: proto: HTTP/2.0 @@ -865,18 +9732,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 483 + content_length: 642 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu","name":"func-nqneps3tsi5gu","type":"Microsoft.Web/sites","kind":"functionapp,linux","managedBy":"","location":"eastus2","identity":{"principalId":"35ec44c6-09f4-4d89-9cf8-1f6d791e7787","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"}}]}' + body: '{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants full access to manage all resources, including the ability to assign roles in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:45.8978856Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}' headers: Cache-Control: - no-cache Content-Length: - - "483" + - "642" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:03 GMT + - Thu, 09 Apr 2026 19:18:03 GMT Expires: - "-1" Pragma: @@ -888,32 +9755,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/8949e64e-3349-49f5-9845-ef7c69df5767 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 8613c388-d699-4294-8666-cff0e0d58561 + - cc7ec84c-054f-4e9c-b013-ab2e9336a27d X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221803Z:8613c388-d699-4294-8666-cff0e0d58561 + - EASTUS:20260409T191803Z:739d8aab-c311-4ce3-8147-294d1e95a3f8 X-Msedge-Ref: - - 'Ref A: A8813AE4786E4AD28A64C18226E071D6 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:03Z' + - 'Ref A: EF1B3493FDEF4CF4BCFCB1EA89FF0FB9 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:18:03Z' status: 200 OK code: 200 - duration: 360.06025ms - - id: 13 + duration: 93.836709ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 6914 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-daa0f52","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":"14737299990775015593"}},"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":"11087203980633715535"}},"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":"2023-12-01","name":"[format(''{0}/{1}'', format(''func-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"AzureWebJobsStorage__accountName":"[format(''st{0}'', variables(''resourceToken''))]"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites","apiVersion":"2023-12-01","name":"[format(''func-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"functionapp,linux","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''func''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":false,"functionAppConfig":{"deployment":{"storage":{"type":"blobContainer","value":"[format(''{0}{1}'', reference(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), ''2022-05-01'').primaryEndpoints.blob, ''func-deploy'')]","authentication":{"type":"SystemAssignedIdentity"}}},"scaleAndConcurrency":{"maximumInstanceCount":100,"instanceMemoryMB":2048},"runtime":{"name":"python","version":"3.11"}}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices/containers'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"Standard_LRS"},"kind":"Storage","properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2025-01-01","name":"[format(''{0}/{1}'', format(''st{0}'', variables(''resourceToken'')), ''default'')]","dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts/blobServices/containers","apiVersion":"2025-01-01","name":"[format(''{0}/{1}/{2}'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","properties":{"publicAccess":"None"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices'', format(''st{0}'', variables(''resourceToken'')), ''default'')]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'', ''full'').identity.principalId]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b'')]","principalType":"ServicePrincipal"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2023-12-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"functionapp","sku":{"tier":"FlexConsumption","name":"FC1"},"properties":{"reserved":true}}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_FUNCTION_URI.value]"}}}},"tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"}}' form: {} headers: Accept: @@ -922,62 +9791,22947 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "6914" + Content-Type: + - application/json User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu?api-version=2023-01-01 - method: GET + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9546 + content_length: 2899 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu","name":"func-nqneps3tsi5gu","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"},"properties":{"name":"func-nqneps3tsi5gu","state":"Running","hostNames":["func-nqneps3tsi5gu.azurewebsites.net"],"webSpace":"flex-9ad01624484914297819d457028e8cb8a18061877b59dcf9f00636642d7eeae0-webspace","selfLink":"https://waws-prod-bn1-155.api.azurewebsites.windows.net:454/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/webspaces/flex-9ad01624484914297819d457028e8cb8a18061877b59dcf9f00636642d7eeae0-webspace/sites/func-nqneps3tsi5gu","repositorySiteName":"func-nqneps3tsi5gu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["func-nqneps3tsi5gu.azurewebsites.net","func-nqneps3tsi5gu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-nqneps3tsi5gu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-nqneps3tsi5gu.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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-12T22:17:53.3333333","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":"","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":{"deployment":{"storage":{"type":"blobcontainer","value":"https://stnqneps3tsi5gu.blob.core.windows.net/func-deploy","authentication":{"type":"systemassignedidentity","userAssignedIdentityResourceId":null,"storageAccountConnectionStringName":null}}},"runtime":{"name":"python","version":"3.11"},"scaleAndConcurrency":{"alwaysReady":null,"maximumInstanceCount":100,"instanceMemoryMB":2048,"triggers":null},"siteUpdateStrategy":{"type":"Recreate"}},"daprConfig":null,"deploymentId":"func-nqneps3tsi5gu","slotName":null,"trafficManagerHostNames":null,"sku":"FlexConsumption","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"useQueryStringAffinity":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"clientCertExclusionEndPoints":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","kind":"functionapp,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.136.3","possibleInboundIpAddresses":"20.119.136.3","inboundIpv6Address":"2603:1030:40c:7::1e","possibleInboundIpv6Addresses":"2603:1030:40c:7::1e","ftpUsername":"func-nqneps3tsi5gu\\$func-nqneps3tsi5gu","ftpsHostName":"ftps://waws-prod-bn1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"130.213.211.141,135.237.212.4,135.224.187.188,135.224.187.166,48.211.225.192,135.237.203.170,52.184.244.40,52.247.19.20,52.251.15.19,52.252.16.56,52.252.16.75,52.252.16.231,20.119.136.3","possibleOutboundIpAddresses":"130.213.211.141,135.237.212.4,135.224.187.188,135.224.187.166,48.211.225.192,135.237.203.170,52.184.244.40,52.247.19.20,52.251.15.19,52.252.16.56,52.252.16.75,52.252.16.231,52.252.17.75,52.252.17.76,52.252.18.18,52.252.18.23,52.252.18.39,52.252.18.59,52.252.21.49,52.252.18.33,52.252.21.175,52.252.22.19,52.252.22.178,52.253.64.5,52.253.64.38,52.253.64.80,52.253.64.150,52.253.64.156,52.253.64.167,52.253.64.225,20.119.136.3","outboundIpv6Addresses":"2603:1030:403:3::197,2603:1030:403:6::289,2603:1030:403:5::277,2603:1030:403:10::2ff,2603:1030:403:12::213,2603:1030:403:3::8e6,2603:1030:403:14::1df,2603:1030:403:5::273,2603:1030:403:3::8d4,2603:1030:403:11::6e,2603:1030:403:5::274,2603:1030:403:7::1ae,2603:1030:40c:7::1e,2603:10e1:100:2::1477:8803","possibleOutboundIpv6Addresses":"2603:1030:403:3::197,2603:1030:403:6::289,2603:1030:403:5::277,2603:1030:403:10::2ff,2603:1030:403:12::213,2603:1030:403:3::8e6,2603:1030:403:14::1df,2603:1030:403:5::273,2603:1030:403:3::8d4,2603:1030:403:11::6e,2603:1030:403:5::274,2603:1030:403:7::1ae,2603:1030:403:17::1bb,2603:1030:403:6::22d,2603:1030:403:17::1bd,2603:1030:403:7::1f2,2603:1030:403:15::4e2,2603:1030:403:17::1be,2603:1030:403:15::4e7,2603:1030:403:14::1e0,2603:1030:403:16::112,2603:1030:403:5::275,2603:1030:403:6::273,2603:1030:403:11::228,2603:1030:403:7::1f3,2603:1030:403:3::8d5,2603:1030:403:7::1f4,2603:1030:403:6::288,2603:1030:403:5::276,2603:1030:403:7::1f5,2603:1030:40c:7::1e,2603:10e1:100:2::1477:8803","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"},"resourceGroup":"rg-azdtest-db2277e","defaultHostName":"func-nqneps3tsi5gu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"35ec44c6-09f4-4d89-9cf8-1f6d791e7787"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"},"properties":{"templateHash":"14737299990775015593","parameters":{"environmentName":{"type":"String","value":"azdtest-daa0f52"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:18:03Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:18:03.7695997Z","duration":"PT0S","correlationId":"cc51b8935c2aed48aed4b21d02d85021","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-daa0f52"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik/config/appsettings"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/providers/Microsoft.Authorization/roleAssignments/4f3ecc16-9711-5ec8-9c97-d8790fb4059d"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "9546" + - "2899" Content-Type: - - application/json + - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:18:04 GMT - Etag: - - '"1DC84114BAEDB55"' + - Thu, 09 Apr 2026 19:18:04 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: - - b1a464d122a1225833de615f408fac1e - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - d51c7215-8fa8-45ec-aecd-f0febf600854 - X-Ms-Routing-Request-Id: - - EASTUS2:20260112T221804Z:3785b692-1d90-4b30-af54-8bb65388cdc9 - X-Msedge-Ref: - - 'Ref A: 376D7F6A64EB4C519C0A49F14EF0ACB5 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:03Z' - X-Powered-By: - - ASP.NET - status: 200 OK - code: 200 - duration: 499.92375ms - - id: 14 + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 5f78ace3-f9c4-4847-9cb9-7cab2b993871 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191804Z:5f78ace3-f9c4-4847-9cb9-7cab2b993871 + X-Msedge-Ref: + - 'Ref A: A0E2CC2F71584406AD596C8977FBF6D7 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:18:03Z' + status: 200 OK + code: 200 + duration: 1.0878945s + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 6914 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-daa0f52","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":"14737299990775015593"}},"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":"11087203980633715535"}},"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":"2023-12-01","name":"[format(''{0}/{1}'', format(''func-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"AzureWebJobsStorage__accountName":"[format(''st{0}'', variables(''resourceToken''))]"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites","apiVersion":"2023-12-01","name":"[format(''func-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"functionapp,linux","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''func''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":false,"functionAppConfig":{"deployment":{"storage":{"type":"blobContainer","value":"[format(''{0}{1}'', reference(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), ''2022-05-01'').primaryEndpoints.blob, ''func-deploy'')]","authentication":{"type":"SystemAssignedIdentity"}}},"scaleAndConcurrency":{"maximumInstanceCount":100,"instanceMemoryMB":2048},"runtime":{"name":"python","version":"3.11"}}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices/containers'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"Standard_LRS"},"kind":"Storage","properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2025-01-01","name":"[format(''{0}/{1}'', format(''st{0}'', variables(''resourceToken'')), ''default'')]","dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Storage/storageAccounts/blobServices/containers","apiVersion":"2025-01-01","name":"[format(''{0}/{1}/{2}'', format(''st{0}'', variables(''resourceToken'')), ''default'', ''func-deploy'')]","properties":{"publicAccess":"None"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts/blobServices'', format(''st{0}'', variables(''resourceToken'')), ''default'')]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'', ''full'').identity.principalId]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b7e6dc6d-f1e8-4753-8033-0f276bb0955b'')]","principalType":"ServicePrincipal"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2023-12-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"functionapp","sku":{"tier":"FlexConsumption","name":"FC1"},"properties":{"reserved":true}}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_FUNCTION_URI":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_FUNCTION_URI.value]"}}}},"tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "6914" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1412 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"},"properties":{"templateHash":"14737299990775015593","parameters":{"environmentName":{"type":"String","value":"azdtest-daa0f52"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:18:04Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T19:18:04.9646134Z","duration":"PT0.0003104S","correlationId":"cc51b8935c2aed48aed4b21d02d85021","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-daa0f52"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263/operationStatuses/08584258446004996281?api-version=2021-04-01&t=639113590859646052&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=vyFMSgbRpbz4GkJb8jgj7B7GneVy0zmQ1YiYrv38jGz-ayWWWztr-K5bc1Apr70Dq5LhT3FLo0a2_F1u4VAFFPr62GbMAsU6afjxNVKYqGIYZHJOKf5RCXyDWxa7RSnIZiDq1W-5ec9WG9CQcayYX-Ag46cK4MAdxGIt37MLJ7KxfEXqiFjWZT2aQs2AP6fZ7-0LTCt2afroA2PzDrLOwr5anKsTAuS105cpT4QhmFT7CkdGuHN3-MkpD2WJ9WEDz6qDthjYQEr6Nm3O-Q7UrtLdKuBb8rNyh_ZjZjp02kcGZx0YFvWdGdsK6QhJKA6-bkNqxyCEEicCofaFZT0RuQ&h=8hxcHeURjMJpC4gV32rlW0vakZvLtArGvI5B5-FU9EY + Cache-Control: + - no-cache + Content-Length: + - "1412" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:18:05 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 74fb0a2c-5dbb-44c1-b8c6-27d6607895ee + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191806Z:74fb0a2c-5dbb-44c1-b8c6-27d6607895ee + X-Msedge-Ref: + - 'Ref A: 54F2C927C83F4D45999D141E7EE514A0 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:18:04Z' + status: 201 Created + code: 201 + duration: 1.401536291s + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263/operationStatuses/08584258446004996281?api-version=2021-04-01&t=639113590859646052&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=vyFMSgbRpbz4GkJb8jgj7B7GneVy0zmQ1YiYrv38jGz-ayWWWztr-K5bc1Apr70Dq5LhT3FLo0a2_F1u4VAFFPr62GbMAsU6afjxNVKYqGIYZHJOKf5RCXyDWxa7RSnIZiDq1W-5ec9WG9CQcayYX-Ag46cK4MAdxGIt37MLJ7KxfEXqiFjWZT2aQs2AP6fZ7-0LTCt2afroA2PzDrLOwr5anKsTAuS105cpT4QhmFT7CkdGuHN3-MkpD2WJ9WEDz6qDthjYQEr6Nm3O-Q7UrtLdKuBb8rNyh_ZjZjp02kcGZx0YFvWdGdsK6QhJKA6-bkNqxyCEEicCofaFZT0RuQ&h=8hxcHeURjMJpC4gV32rlW0vakZvLtArGvI5B5-FU9EY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:06 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 4b7e0c33-4671-4b64-a22f-cbce93a46e80 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191906Z:4b7e0c33-4671-4b64-a22f-cbce93a46e80 + X-Msedge-Ref: + - 'Ref A: D297FEB59E6948009B11B79AFA924EF4 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:06Z' + status: 200 OK + code: 200 + duration: 91.228666ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2861 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"},"properties":{"templateHash":"14737299990775015593","parameters":{"environmentName":{"type":"String","value":"azdtest-daa0f52"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:18:04Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:18:58.2507Z","duration":"PT53.2860866S","correlationId":"cc51b8935c2aed48aed4b21d02d85021","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-daa0f52"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-lvi65vsqwleik.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/providers/Microsoft.Authorization/roleAssignments/4f3ecc16-9711-5ec8-9c97-d8790fb4059d"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik/config/appsettings"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2861" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:06 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 1ea9b698-ddb4-4ff6-8207-80ffde0807e8 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191906Z:1ea9b698-ddb4-4ff6-8207-80ffde0807e8 + X-Msedge-Ref: + - 'Ref A: DAB8B0E4F51A4904884B3A30E00DDE6A Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:06Z' + status: 200 OK + code: 200 + duration: 155.935834ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-daa0f52%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","name":"rg-azdtest-daa0f52","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","DeleteAfter":"2026-04-09T20:18:04Z"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "325" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:06 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cc51b8935c2aed48aed4b21d02d85021 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - ef3542e2-6363-481f-ba0c-8da4bdd989d5 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191907Z:ef3542e2-6363-481f-ba0c-8da4bdd989d5 + X-Msedge-Ref: + - 'Ref A: E8571127526348888FF39AEC49D5CAB3 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:06Z' + status: 200 OK + code: 200 + duration: 253.4935ms + - id: 19 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:19:07 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 19:24:07 GMT + Source-Age: + - "257" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - c93492016a12be4e4c0a88d021c89adf458084f9 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762347.162603,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 16.592292ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 19:19:07 GMT + Expires: + - Thu, 09 Apr 2026 19:19:07 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: 22.424916ms + - 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:19:07 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 19:24:07 GMT + Source-Age: + - "257" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - cbd5cffafee30548e9a8673b14e9ecfa5b904fcb + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762347.225967,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 31.604166ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 19:19:07 GMT + Expires: + - Thu, 09 Apr 2026 19:19:07 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 72.451459ms + - id: 23 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:19:07 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 19:24:07 GMT + Source-Age: + - "257" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 7365acaadf06a639012601e2684965180e437b9c + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762347.339789,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.015084ms + - id: 24 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:19:07 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 19:24:07 GMT + Source-Age: + - "256" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - ef6f33b411fae00d32e8e8fffcf8ca3f4d5deed8 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762347.365446,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 21.798917ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-daa0f52%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","name":"rg-azdtest-daa0f52","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","DeleteAfter":"2026-04-09T20:18:04Z"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "325" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 15297fe7-c890-4983-a840-9a1d99d5139d + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191907Z:15297fe7-c890-4983-a840-9a1d99d5139d + X-Msedge-Ref: + - 'Ref A: FB02DAC069354F53A7D0E5F5D5BAF05F Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:07Z' + status: 200 OK + code: 200 + duration: 172.189084ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27func%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik","name":"func-lvi65vsqwleik","type":"Microsoft.Web/sites","kind":"functionapp,linux","managedBy":"","location":"eastus2","identity":{"principalId":"2bb34cfc-c882-4087-ba5d-bd47939045a5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-service-name":"func","azd-env-name":"azdtest-daa0f52"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "483" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:07 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 41d2a048-41f2-4c2d-9d52-8989502e32de + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191908Z:41d2a048-41f2-4c2d-9d52-8989502e32de + X-Msedge-Ref: + - 'Ref A: 021F8D05DE8841399BAE4A5C7EF6E570 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:08Z' + status: 200 OK + code: 200 + duration: 229.065958ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-daa0f52%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","name":"rg-azdtest-daa0f52","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","DeleteAfter":"2026-04-09T20:18:04Z"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "325" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 5196f2c8-19ed-439a-a9be-52f9f63e9a7e + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191908Z:5196f2c8-19ed-439a-a9be-52f9f63e9a7e + X-Msedge-Ref: + - 'Ref A: 3501E4409F7E4514B6047AF95C2DB646 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:08Z' + status: 200 OK + code: 200 + duration: 147.275ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27func%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik","name":"func-lvi65vsqwleik","type":"Microsoft.Web/sites","kind":"functionapp,linux","managedBy":"","location":"eastus2","identity":{"principalId":"2bb34cfc-c882-4087-ba5d-bd47939045a5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-service-name":"func","azd-env-name":"azdtest-daa0f52"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "483" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 89d18856-a89e-4617-8f6f-b7f72508f163 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191908Z:89d18856-a89e-4617-8f6f-b7f72508f163 + X-Msedge-Ref: + - 'Ref A: 3875FAF4968746F89B5C218863D4D299 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:08Z' + status: 200 OK + code: 200 + duration: 291.301542ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik?api-version=2023-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 8995 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik","name":"func-lvi65vsqwleik","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-daa0f52","azd-service-name":"func"},"properties":{"name":"func-lvi65vsqwleik","state":"Running","hostNames":["func-lvi65vsqwleik.azurewebsites.net"],"webSpace":"flex-e8bcb7a46feccfc7820b469748e3d89d0d51f777a4215674a7e7ddcb8838f752-webspace","selfLink":"https://waws-prod-bn1-153.api.azurewebsites.windows.net:455/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/webspaces/flex-e8bcb7a46feccfc7820b469748e3d89d0d51f777a4215674a7e7ddcb8838f752-webspace/sites/func-lvi65vsqwleik","repositorySiteName":"func-lvi65vsqwleik","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":true,"afdEnabled":false,"enabledHostNames":["func-lvi65vsqwleik.azurewebsites.net","func-lvi65vsqwleik.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-lvi65vsqwleik.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-lvi65vsqwleik.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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-09T19:18:56.58","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":"","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":{"deployment":{"storage":{"type":"blobcontainer","value":"https://stlvi65vsqwleik.blob.core.windows.net/func-deploy","authentication":{"type":"systemassignedidentity","userAssignedIdentityResourceId":null,"storageAccountConnectionStringName":null}}},"runtime":{"name":"python","version":"3.11"},"scaleAndConcurrency":{"alwaysReady":null,"maximumInstanceCount":100,"instanceMemoryMB":2048,"triggers":null},"siteUpdateStrategy":{"type":"Recreate"}},"daprConfig":null,"deploymentId":"func-lvi65vsqwleik","slotName":null,"trafficManagerHostNames":null,"sku":"FlexConsumption","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"useQueryStringAffinity":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"clientCertExclusionEndPoints":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","kind":"functionapp,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.3","possibleInboundIpAddresses":"20.119.128.3","inboundIpv6Address":"2603:1030:40c:7::1d","possibleInboundIpv6Addresses":"2603:1030:40c:7::1d","ftpUsername":"func-lvi65vsqwleik\\$func-lvi65vsqwleik","ftpsHostName":"ftps://waws-prod-bn1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.96.41.220,20.96.44.46,20.85.25.138,20.96.42.23,20.96.44.74,20.96.44.106,20.119.128.3","possibleOutboundIpAddresses":"20.96.41.220,20.96.44.46,20.85.25.138,20.96.42.23,20.96.44.74,20.96.44.106,20.96.44.111,20.96.43.23,20.96.44.124,20.96.41.67,20.96.44.174,20.85.31.83,20.96.43.165,20.186.55.179,40.70.154.43,52.138.116.173,52.167.66.117,52.167.249.187,52.167.251.93,52.167.253.8,52.167.254.159,52.167.254.248,52.177.94.143,52.177.232.216,20.119.128.3","outboundIpv6Addresses":"2603:1030:403:14::160,2603:1030:403:15::51f,2603:1030:403:3::b94,2603:1030:403:17::142,2603:1030:403:12::1b2,2603:1030:403:7::7f,2603:1030:40c:7::1d,2603:10e1:100:2::1477:8003","possibleOutboundIpv6Addresses":"2603:1030:403:14::160,2603:1030:403:15::51f,2603:1030:403:3::b94,2603:1030:403:17::142,2603:1030:403:12::1b2,2603:1030:403:7::7f,2603:1030:403:3::b98,2603:1030:403:11::1c3,2603:1030:403:10::26f,2603:1030:403:10::270,2603:1030:403:6::220,2603:1030:403:3::379,2603:1030:403:6::221,2603:1030:403:17::144,2603:1030:403:17::145,2603:1030:403:11::1c4,2603:1030:403:3::386,2603:1030:403:14::164,2603:1030:403:5::61,2603:1030:403:11::1c5,2603:1030:403:11::1c6,2603:1030:403:12::1b5,2603:1030:403:17::146,2603:1030:403:14::166,2603:1030:40c:7::1d,2603:10e1:100:2::1477:8003","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-daa0f52","azd-service-name":"func"},"resourceGroup":"rg-azdtest-daa0f52","defaultHostName":"func-lvi65vsqwleik.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2bb34cfc-c882-4087-ba5d-bd47939045a5"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "8995" + Content-Type: + - application/json + Date: + - Thu, 09 Apr 2026 19:19:08 GMT + Etag: + - 1DCC855B6049040 + 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: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 6fedf299-3159-41bd-89fe-b613dc003bc1 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191909Z:4eca740f-5810-4734-b664-d251cc5c5f0d + X-Msedge-Ref: + - 'Ref A: 660BAE9F4F14472AA7C560EC1C796D66 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:08Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 326.960709ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik?api-version=2023-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1850 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik","name":"plan-lvi65vsqwleik","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"East US 2","tags":{"azd-env-name":"azdtest-daa0f52"},"properties":{"serverFarmId":90407,"name":"plan-lvi65vsqwleik","workerSize":"Small","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Small","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"flex-e8bcb7a46feccfc7820b469748e3d89d0d51f777a4215674a7e7ddcb8838f752-webspace","subscription":"5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"East US 2","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"azd-env-name":"azdtest-daa0f52"},"kind":"functionapp","resourceGroup":"rg-azdtest-daa0f52","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-153_90407","targetWorkerCount":0,"targetWorkerSizeId":0,"targetWorkerSku":null,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"maximumNumberOfZones":3,"currentNumberOfZonesUtilized":0,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2026-04-09T19:18:12.7866667","asyncScalingEnabled":false,"isCustomMode":false,"powerState":"Running","eligibleLogCategories":""},"sku":{"name":"FC1","tier":"FlexConsumption","size":"FC1","family":"FC","capacity":0}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1850" + Content-Type: + - application/json + Date: + - Thu, 09 Apr 2026 19:19:09 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: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 972f1e47-51e8-4f0e-a61e-6e195453c3d9 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191909Z:38094110-4153-4f9c-9cb4-6fa47bdc4fe4 + X-Msedge-Ref: + - 'Ref A: 5F35CD554F2644AFA83C7833025C886A Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:19:09Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 468.786125ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5446 + transfer_encoding: [] + trailer: {} + host: func-lvi65vsqwleik.scm.azurewebsites.net + remote_addr: "" + request_uri: "" + body: !!binary | + UEsDBBQACAAIADZ6iVwAAAAAAAAAAAAAAAAKAAkALmdpdGlnbm9yZVVUBQABWPvXaVSQwW + rzMBCE7/MUhvwnw796hrYJvYQQSumlFCPLG0eJrBVe2cR9+qKYFHoZZj6GZdjWR0h7gdMb + aFZw1zOOUxu8noGaJuURNekkqMmpO/Wo6cW6MyONcmGXKYi70kUlAiZZd7U9K8w7a35jnU + JWwGSRoOYwvXImvjHMU0rN1mYLo+xGzgrTlUiPaFNSztnHXtfjQZwN9JchSsfNIN0UWNF5 + zcCm2pdmlZZ8llj9LqIVNA9gSvW4lnZx9qPEgWNWEMcZNBflOBvMd90dPkzJ1NrrylaHTf + W8ZP7vZEg+cFeZSlL2g/++++1+X518Wdc0aXHlcU1jUFNaPp10X6j/pYVcsKo/AQAA//9Q + SwcIw4UZQwkBAACLAQAAUEsDBBQACAAIADZ6iVwAAAAAAAAAAAAAAAAXAAkALnZzY29kZS + 9leHRlbnNpb25zLmpzb25VVAUAAVj712mq5lJQUFBQKkpNzs/NTc1LSSzJzM8rVrJSiAZL + gCVzi3UTq0qLUkvy83OK9cqKk/NTUiEiaaV5yRANYNWxXLWAAAAA//9QSwcIhIgLYUUAAA + BQAAAAUEsDBBQACAAIADZ6iVwAAAAAAAAAAAAAAAAXAAkASHR0cFRyaWdnZXIvX19pbml0 + X18ucHlVVAUAAVj712mcUcuKGzEQvOsrGl88Axux5LiwuQV8NMHkapSZHllBVsvdLdjZkH + 8P87AnIuSyunWpVFWqDtdMrBDJ+5C8Mevs3gujHUrqNFAScALTYIzpcYCrC6lhvL3MoD2o + 5m94Kyjawqcvf4OSKQm+GAC4e9iQBmr2x1EvlOBwOh1BOXiPDHc/yEwdimAPDnhRtvvWzD + LJXRFeJ9hmx+4q1qM2+wnetzMjDJBIZ+LiPB3lcRumw3g7/6B+XLU86vmnUGraBwvfOswK + 310s+JWZuBbITmTjRsH6ess521QpHzGriIxaOP1bXzPsDhgjPcGv6cFvC6dLkKo67Lfy8A + 27otiDlG5qcSgxjna3/KvO+V/H6iew+4AfHJ0IuKWGkEAvCLeCPIIoh+SB+A6vG4Z5GwMx + OMjIQsnF8I498JrK7p7qXKJOi5w76vH18/Pz47I1fwIAAP//UEsHCBXQCm9RAQAA1wIAAF + BLAwQUAAgACAA2eolcAAAAAAAAAAAAAAAAGQAJAEh0dHBUcmlnZ2VyL2Z1bmN0aW9uLmpz + b25VVAUAAVj712l0jkGKwzAMRfc5hRCzDHOAHGBWs+yuFJMmwhEksmvLhRBy92K31C2lGx + vp6X/e1gBgHAJ7/eOZsAM0hoXVmF+/YpvxmWVksRE7ODYAAFt5AbBPOv3Tleac68XJurgU + S6pwXX2pnFT9IbC1FCocOdCg7CRfsFQg/VJSgS51uZBObqwOZWlJnxcA6F1UfIyn8u/tu/ + Cr0BcTl/RT5SeQpiD38r3J9fstAAD//1BLBwisGjDyqgAAADsBAABQSwMEFAAIAAgANnqJ + XAAAAAAAAAAAAAAAAAoACQBhenVyZS55YW1sVVQFAAFY+9dpJI1LDsIwDET3OYUvAIitV1 + xllJq2qHGsZloJTo+Sruaj0TxHMZX34RkRqRgxgVBJIrQSG2gq+E03WuOj77pBxOt8pmb7 + uWZrmmRcdBWJvX4sU+U+4lIbLwLX6qPa4POB2VTiy6V6+gcAAP//UEsHCK2BDZFsAAAAhg + AAAFBLAwQUAAgACAA2eolcAAAAAAAAAAAAAAAAEgAJAGdldHRpbmdfc3RhcnRlZC5tZFVU + BQABWPvXaZRWX2/bNhB/16c4wA+LDUve+jQUw4ChWYsBW1cgSV+MYaDJk8WG5qm8o1Pv0w + 8kJSV24sB9CiLdv9+fO3k2gw8oYv0WbkQFQQMPVjr47b8YEN5Hr8WSr2azGfypWCD2Rgma + t/CXCrqDn6WDNz+++alKETP4FOgLaoEbCVFLDFjddgg7ZT30w6uWnMEAV78MD/4NRPLrHL + TyoMlLipUOU5yjhzRXax3y26pawGLhSCvXcJmYmy9MfrGAGu4YDQgBCwUE1fcwxoDyJhX2 + mJEAS8iPHzr0EKL3qUUu6w4N3HaWc0MwhOx/ENiiQB83znJXWmRmGrglcKiChx0FXAIjwv + pkulTnn6tOpOe3q5W6V82OVyql1+1ALK/6g3TkVzm1HlPnTUYb8Gu0AXfohRv5Jhnqu0IS + Z5acZQFq4VOuAr3S92qL5R0fWHAH1rMo5wbEA5QEesKSe3XE8sjn1GTraKNcIrC12xhU5p + D6PDtIpwRU2yZdlXMwoQLrQU3/Jj1OqT3L60cqtcYeKiBw7Hsq3nxZtRe0mPBcqsCUMJDf + 7FmTwVXm4+rvPI5y80dqitc+37wjg8cEvTzREDlofOlYZYp6W7JqLks6zYh+f35CNfpib4 + NE5QD93gbyyVAQ08psDoVFMLhHR316U0pfk77HkPQ6LZ937dRMB4ph2vGs/lpHFtqNS43h + UsQlr57yBqyCLHwea3J8CgGtGDntRB7p2IPvKWRFwPqWwi6LNahz563ALfL3aBO9lVpKzq + hICrJbT+EZb9eonQpYlmBYHu4oOvPanbnjmEy+BJn2R4+YR4um8NKzgEZjhcLotCUUmzyJ + KpqfN8cSCttPUh65XeaT+sIlTtF9wH1yV+lwdIg3mIwyYWyq6nelu0eFOsVghYEe0pfAYA + Gbem2sNyn3+Arl11frxWKsMJyvS9U7SpvPm+Ebdl02YTJ1awPLyNU0bOQU8PkG0k5X1R/Z + btCpPYLPFyygMocl9A4VI+gO9T1FgVRx/TVafQ95lS8dNqfkjHmiObklNeTz32x+utP5Ih + cMDYwf65PtfboqkwGhql5aGiAPBntHh3xLxmPdUjidYqJgb9lKcfF6G6158mk0pLnZWR2I + qZVG067Q8IwMHVAJ1lmS6XG95zrfyELVbHBYLR3Ww0Wqhepca1L5I35LP1Ow5/TD4uhcg9 + okpcyjD16HtD7lfXAQBvhwjPN1ic2YVmd60qink3GP2rZWQ4pQXmPR4dygxRZF9suHHqz+ + XbOXP/UzCP8HAAD//1BLBwgTJUMStwMAAF8KAABQSwMEFAAIAAgANnqJXAAAAAAAAAAAAA + AAAAkACQBob3N0Lmpzb25VVAUAAVj712lcjz1PxDAMhvf+CssbqIqqY+sG0iExsAAbU2lM + sBScEDvoAOW/o/B1FUuGPO9rP/4YAPCVinISnAF3bsKx/8UUAkvAGXoEAJecI6+LcZIrUQ + 5Ppn8QAHV5zpEl3JIZS9gyAGTdy/IQyeMMViqNR0SHNVZP/u4tU2/hDb1UUsOfSBt+3/Yl + Rgcj6boXVXykoyD34XjNa0maHs2dv9dC7rLK2p3V7f8Vvx22x9/v3OkIZ25y00lf34b2GQ + AA//9QSwcIv0eN8b0AAAAgAQAAUEsDBBQACAAIADZ6iVwAAAAAAAAAAAAAAAAQAAkAaW5m + cmEvbWFpbi5iaWNlcFVUBQABWPvXaWySz27aTBTF9/MUZ/FJAxLwQRR1YQkJ1L+RWhpR2H + QTXcYXe1R7xr0zQ5pGvHtlpzEpZGHLHh2f+zvnelFb95ldEcvBbKgWNf36+/bmeqgWOQcj + tonWu4FeUc3we8SSu4vdwYp3NbuI+9KaEjYgBc4RPQp2LBQZhFB6iUjO/kyMkkL5JLIOVF + UQDj6J4TDRQ9WQUP3SuJsZolhXqDOcW7E1yQMqb6g9wd7Lv469YS953WmJaGtuqWuSH/AO + Rpgi570VCvGpCSME30Z/gCGHHcNUTI5zpAYHSyAHStHX3beNeMPhRaycK4683EeWje1jYY + 6cIrcnyzwfpGhW/n6gvR6OoG83s096qFQkKTh+M75hzKFD2vX4WqkDCSIVAXM8QtPvfMzu + MHZUs87Oyxzh3Qkju2A6KtVnlgL6izXig9/Hyfq51f+fBR+7ThZX06vZeHo9ns50C6CAdn + IGLcX4v8ez8Uet0K8j658UugBZd1dHpWqfp4pPq4Q+/Sc7a7g5n9XvXAGh7SmDFAroqg9Z + p8V5GRftdKJX8Y4tlU+xSRHL79v1+7sP29Xbzc3X1d12fXPa5QnzSRwml2r1JwAA//9QSw + cIBnioqMABAAB1AwAAUEsDBBQACAAIADZ6iVwAAAAAAAAAAAAAAAAaAAkAaW5mcmEvbWFp + bi5wYXJhbWV0ZXJzLmpzb25VVAUAAVj712l0js1KAzEQx+99imHssc3uihf3tsgeBE1FtA + cvZYiDrWwmS5IWtOy7yxjdWwm5/L9+c14A4DK5PXvCFnCf85jaqiqK8ST0wZ4lG/o+RjYu + +D8vVdd1c7uub9Z1U73zOIQvzT1RJM+ZYzKfKcgVrpTggmSWvOWYDkEU1JhaX7HHuYQt6E + kAyHI6xCC6acnzbADgiYajCrg8d2+vz/2ut9ud7R77CX8j06pMDMFRLrzL3YfNXfdyv7H/ + 3YX+6ScAAP//UEsHCNcCn9nBAAAAGAEAAFBLAwQUAAgACAA2eolcAAAAAAAAAAAAAAAAFQ + AJAGluZnJhL3Jlc291cmNlcy5iaWNlcFVUBQABWPvXabxWTW/jNhC961fMIQBtIPJXNptU + QIB6vZvW7Sa7iBMs0ItBSWOHiESy/PDGCfzfC1KiLMVpkF56kWVy5s2bp5khJVW0BOQbpg + QvkZtrWiJooxhfR9VmITJqmOD1KlyAQi2syvA3Jazs9QfBItpQBYauNVzAMxD6lMfINzGn + JZLkIMjOmwesW/GAHC7AiK/iJ6qe5exviwsfsqdtqjPFpAvS6w9YfvwS7bih2e9HUQCFle + WZW9RArlimhBYrM/iB6VAzg/rXyWhyEo8n8WhMHOUIwHFNgDi/+Oi5Q25HImiiJM1bBPDA + eF47uRUq5XHBuH10Dk6OBCx3zN37cVBGo9qwDIM63pvArh8BSCUkKsNQJ54UgDNGdUlVOc + 8TWBX4eFkH+15QPmC5t7o3RupvvNgmsKKFRr8YWE2lnAm+YuuACZCjLMTWSbhfA9BGKLrG + 9hKA2UqnS1qIdCa4oYyjIq39DS2sMzh6rt0H+yQGUrGSqu0XnkvBuNEDB7M7eu6gDZwQuz + YmteYeuWFB8TafhtFiqw2WU63ZmmM+z52D2bZhdtHLt/CrM1rglOczwTOrFPJs245S0kdW + 2nLOtaE8w5mwTqjxaNRYsHrrCkuhtlefEpiMPpy/iKIsN6zs6FlXmdyae8H3XDeotM+UnA + zGY9LBcc9dFAGwOsWA96oOJFg3nUClXKAxjK81kMwXQqj5hg+VUtc2VfDhsKqpZDjMRaYH + ZdNDmSiH9MkqrJ5x02jD5i2mUsYBz8Md1jXA1Ln/wPQPkepFVTrLJc0yJ/a1pxUKypFsSb + FrtXlt0m7yGmtYb00rRN/yk3h0etjy2ry736ueds8IQD/YpCvjwlCeU5Uvv94sqg/RjIia + FXm1yWlRiJ+Le6ow/xO30yxDrfed3M3Ytc6imiD6HWkP2/ZOAyfAoQY5rqgtjKdHlZ8LNd + BB8KZv/2v0YRY83yDi5281ntpk2jivSihtWrAsSEeuBUfyb9WyrNl+KkT6mRrqMlIstUZ0 + cppacy8Ue/Iff6hEgVWTubEZyunDQQZry/JeqFx3XjVt4f+1D7Sbmtc8770Z9jOuGGcegx + wDSc/wY559zOPVGM/jD2enJ/H56OQkHq0mZx/TdPTL6WlK+q8fJ1IxnjFJC3+atJhVo2XQ + 2vf23fDO6X9LoMv3th52VQ18D8uhy3QmJL5esy/PzIMLgT9hV1SVb1wLZEH5+68FnTFxeE + cg3eFhGKoEyGWBjzPBtS29tqQ9WC5n45Dp4TdV6FPIEzDKNgNDWCOtgelfdzdflpd317Pb + +bfr5d3NfH+bI2HEHz3vS6F1etdD4Xeh/UDekeifAAAA//9QSwcIksv74+gDAAA1CgAAUE + sDBBQACAAIADZ6iVwAAAAAAAAAAAAAAAAQAAkAcmVxdWlyZW1lbnRzLnR4dFVUBQABWPvX + aVzMwQlCMQwG4Pub4gfPHUIQ9wgxpcE2kTSl6PTiwcsb4PsuuDnME2rc10NAnxVS6jJOdZ + tlezwlQBOaGPQGu9WunNiaDdkE1x/B/U/w6pTVYxzHKfsGAAD//1BLBwg3OMZZWgAAAG0A + AABQSwECFAAUAAgACAA2eolcw4UZQwkBAACLAQAACgAJAAAAAAAAAAAAAAAAAAAALmdpdG + lnbm9yZVVUBQABWPvXaVBLAQIUABQACAAIADZ6iVyEiAthRQAAAFAAAAAXAAkAAAAAAAAA + AAAAAEoBAAAudnNjb2RlL2V4dGVuc2lvbnMuanNvblVUBQABWPvXaVBLAQIUABQACAAIAD + Z6iVwV0ApvUQEAANcCAAAXAAkAAAAAAAAAAAAAAN0BAABIdHRwVHJpZ2dlci9fX2luaXRf + Xy5weVVUBQABWPvXaVBLAQIUABQACAAIADZ6iVysGjDyqgAAADsBAAAZAAkAAAAAAAAAAA + AAAHwDAABIdHRwVHJpZ2dlci9mdW5jdGlvbi5qc29uVVQFAAFY+9dpUEsBAhQAFAAIAAgA + NnqJXK2BDZFsAAAAhgAAAAoACQAAAAAAAAAAAAAAdgQAAGF6dXJlLnlhbWxVVAUAAVj712 + lQSwECFAAUAAgACAA2eolcEyVDErcDAABfCgAAEgAJAAAAAAAAAAAAAAAjBQAAZ2V0dGlu + Z19zdGFydGVkLm1kVVQFAAFY+9dpUEsBAhQAFAAIAAgANnqJXL9HjfG9AAAAIAEAAAkACQ + AAAAAAAAAAAAAAIwkAAGhvc3QuanNvblVUBQABWPvXaVBLAQIUABQACAAIADZ6iVwGeKio + wAEAAHUDAAAQAAkAAAAAAAAAAAAAACAKAABpbmZyYS9tYWluLmJpY2VwVVQFAAFY+9dpUE + sBAhQAFAAIAAgANnqJXNcCn9nBAAAAGAEAABoACQAAAAAAAAAAAAAAJwwAAGluZnJhL21h + aW4ucGFyYW1ldGVycy5qc29uVVQFAAFY+9dpUEsBAhQAFAAIAAgANnqJXJLL++PoAwAANQ + oAABUACQAAAAAAAAAAAAAAOQ0AAGluZnJhL3Jlc291cmNlcy5iaWNlcFVUBQABWPvXaVBL + AQIUABQACAAIADZ6iVw3OMZZWgAAAG0AAAAQAAkAAAAAAAAAAAAAAG0RAAByZXF1aXJlbW + VudHMudHh0VVQFAAFY+9dpUEsFBgAAAAALAAsAIgMAAA4SAAAAAA== + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "5446" + Content-Type: + - application/zip + User-Agent: + - azsdk-go-funcapp-deploy/1.0.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://func-lvi65vsqwleik.scm.azurewebsites.net:443/api/publish?RemoteBuild=true + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: false + body: '"34bf9c6a-75c1-47d0-9f1a-b2192def1314"' + headers: + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:19:10 GMT + Location: + - https://func-lvi65vsqwleik.scm.azurewebsites.net/api/deployments/34bf9c6a-75c1-47d0-9f1a-b2192def1314 + Server: + - Kestrel + Set-Cookie: + - ARRAffinity=d1d4ad4416b0133813d9a0958143dcc88194766483f8f55db46f81b7aaf7c20a;Path=/;HttpOnly;Secure;Domain=func-lvi65vsqwleik.scm.azurewebsites.net + - ARRAffinitySameSite=d1d4ad4416b0133813d9a0958143dcc88194766483f8f55db46f81b7aaf7c20a;Path=/;HttpOnly;SameSite=None;Secure;Domain=func-lvi65vsqwleik.scm.azurewebsites.net + X-Ms-Correlation-Id: + - f6668543-9e33-4d34-9573-679f970abdfc + status: 202 Accepted + code: 202 + duration: 1.853251208s + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: func-lvi65vsqwleik.scm.azurewebsites.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-funcapp-deploy/1.0.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://func-lvi65vsqwleik.scm.azurewebsites.net:443/api/deployments/34bf9c6a-75c1-47d0-9f1a-b2192def1314 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: false + body: '{"id":"34bf9c6a-75c1-47d0-9f1a-b2192def1314","status":4,"status_text":"","author_email":"","author":null,"deployer":"LegionOneDeploy","remoteBuild":true,"message":"","progress":"","received_time":"2026-04-09T19:19:11.4317311Z","start_time":"2026-04-09T19:19:11.4317311Z","end_time":"2026-04-09T19:20:26.1781849Z","last_success_end_time":"2026-04-09T19:20:26.1781849Z","complete":true,"active":true,"is_temp":false,"is_readonly":false,"url":"https://func-lvi65vsqwleik.scm.azurewebsites.net/api/deployments/34bf9c6a-75c1-47d0-9f1a-b2192def1314","log_url":"https://func-lvi65vsqwleik.scm.azurewebsites.net/api/deployments/34bf9c6a-75c1-47d0-9f1a-b2192def1314/log","site_name":"func-lvi65vsqwleik","build_summary":null}' + headers: + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:20:25 GMT + Server: + - Kestrel + Set-Cookie: + - ARRAffinity=d1d4ad4416b0133813d9a0958143dcc88194766483f8f55db46f81b7aaf7c20a;Path=/;HttpOnly;Secure;Domain=func-lvi65vsqwleik.scm.azurewebsites.net + - ARRAffinitySameSite=d1d4ad4416b0133813d9a0958143dcc88194766483f8f55db46f81b7aaf7c20a;Path=/;HttpOnly;SameSite=None;Secure;Domain=func-lvi65vsqwleik.scm.azurewebsites.net + X-Ms-Correlation-Id: + - 15d40144-2b08-4024-b546-7430082a4765 + status: 200 OK + code: 200 + duration: 198.090584ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik?api-version=2023-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 8995 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik","name":"func-lvi65vsqwleik","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-daa0f52","azd-service-name":"func"},"properties":{"name":"func-lvi65vsqwleik","state":"Running","hostNames":["func-lvi65vsqwleik.azurewebsites.net"],"webSpace":"flex-e8bcb7a46feccfc7820b469748e3d89d0d51f777a4215674a7e7ddcb8838f752-webspace","selfLink":"https://waws-prod-bn1-153.api.azurewebsites.windows.net:455/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/webspaces/flex-e8bcb7a46feccfc7820b469748e3d89d0d51f777a4215674a7e7ddcb8838f752-webspace/sites/func-lvi65vsqwleik","repositorySiteName":"func-lvi65vsqwleik","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":true,"afdEnabled":false,"enabledHostNames":["func-lvi65vsqwleik.azurewebsites.net","func-lvi65vsqwleik.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-lvi65vsqwleik.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-lvi65vsqwleik.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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-09T19:18:56.58","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":"","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":{"deployment":{"storage":{"type":"blobcontainer","value":"https://stlvi65vsqwleik.blob.core.windows.net/func-deploy","authentication":{"type":"systemassignedidentity","userAssignedIdentityResourceId":null,"storageAccountConnectionStringName":null}}},"runtime":{"name":"python","version":"3.11"},"scaleAndConcurrency":{"alwaysReady":null,"maximumInstanceCount":100,"instanceMemoryMB":2048,"triggers":null},"siteUpdateStrategy":{"type":"Recreate"}},"daprConfig":null,"deploymentId":"func-lvi65vsqwleik","slotName":null,"trafficManagerHostNames":null,"sku":"FlexConsumption","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"useQueryStringAffinity":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"clientCertExclusionEndPoints":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B6D7E35E91488AA11AF028BEE09363DB04F7C5C47083C9BB38FB408820208CB","kind":"functionapp,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.3","possibleInboundIpAddresses":"20.119.128.3","inboundIpv6Address":"2603:1030:40c:7::1d","possibleInboundIpv6Addresses":"2603:1030:40c:7::1d","ftpUsername":"func-lvi65vsqwleik\\$func-lvi65vsqwleik","ftpsHostName":"ftps://waws-prod-bn1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.96.41.220,20.96.44.46,20.85.25.138,20.96.42.23,20.96.44.74,20.96.44.106,20.119.128.3","possibleOutboundIpAddresses":"20.96.41.220,20.96.44.46,20.85.25.138,20.96.42.23,20.96.44.74,20.96.44.106,20.96.44.111,20.96.43.23,20.96.44.124,20.96.41.67,20.96.44.174,20.85.31.83,20.96.43.165,20.186.55.179,40.70.154.43,52.138.116.173,52.167.66.117,52.167.249.187,52.167.251.93,52.167.253.8,52.167.254.159,52.167.254.248,52.177.94.143,52.177.232.216,20.119.128.3","outboundIpv6Addresses":"2603:1030:403:14::160,2603:1030:403:15::51f,2603:1030:403:3::b94,2603:1030:403:17::142,2603:1030:403:12::1b2,2603:1030:403:7::7f,2603:1030:40c:7::1d,2603:10e1:100:2::1477:8003","possibleOutboundIpv6Addresses":"2603:1030:403:14::160,2603:1030:403:15::51f,2603:1030:403:3::b94,2603:1030:403:17::142,2603:1030:403:12::1b2,2603:1030:403:7::7f,2603:1030:403:3::b98,2603:1030:403:11::1c3,2603:1030:403:10::26f,2603:1030:403:10::270,2603:1030:403:6::220,2603:1030:403:3::379,2603:1030:403:6::221,2603:1030:403:17::144,2603:1030:403:17::145,2603:1030:403:11::1c4,2603:1030:403:3::386,2603:1030:403:14::164,2603:1030:403:5::61,2603:1030:403:11::1c5,2603:1030:403:11::1c6,2603:1030:403:12::1b5,2603:1030:403:17::146,2603:1030:403:14::166,2603:1030:40c:7::1d,2603:10e1:100:2::1477:8003","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-daa0f52","azd-service-name":"func"},"resourceGroup":"rg-azdtest-daa0f52","defaultHostName":"func-lvi65vsqwleik.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2bb34cfc-c882-4087-ba5d-bd47939045a5"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "8995" + Content-Type: + - application/json + Date: + - Thu, 09 Apr 2026 19:20:26 GMT + Etag: + - 1DCC855B6049040 + 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: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 23f90a6c-d0d9-4bc9-9c7b-85bb80c45b18 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T192027Z:6962125e-04a3-402b-aa0b-6ef9596f4005 + X-Msedge-Ref: + - 'Ref A: B7E9F9B14668437DAF3AD04D4037E98F Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:26Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 669.033042ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-daa0f52%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","name":"rg-azdtest-daa0f52","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","DeleteAfter":"2026-04-09T20:18:04Z"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "325" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:20:27 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e72c49b776517b822e434675ffdd7b31 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - f30fd269-b873-4cb9-bfba-f059c77aca94 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192027Z:f30fd269-b873-4cb9-bfba-f059c77aca94 + X-Msedge-Ref: + - 'Ref A: 66B15DD7B29C4215B694D8130C9CFB45 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:27Z' + status: 200 OK + code: 200 + duration: 191.661458ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: raw.githubusercontent.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:20:27 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 19:25:27 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - b6249cbbf028cba73d96b25453bbf2a4c6b866c2 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762428.563686,VS0,VE90 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 111.20175ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 19:20:27 GMT + Expires: + - Thu, 09 Apr 2026 19:20:27 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: 113.902917ms + - id: 37 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:20:27 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 19:25:27 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 1e4560caffe8c59a581d2aaf699fbf57df05f255 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762428.814500,VS0,VE30 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 50.849ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 19:20:27 GMT + Expires: + - Thu, 09 Apr 2026 19:20:27 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 101.797292ms + - id: 39 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:20:28 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 19:25:28 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 528bd2325e4dc3ecaa4ce08f2dcfaf4ec7e2d7ef + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762428.054439,VS0,VE61 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 91.173084ms + - id: 40 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:20:28 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 19:25:28 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - cab0a757159f5fd2f2b81787280945d5d805cb6b + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762428.147497,VS0,VE153 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 168.60675ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: func-lvi65vsqwleik.azurewebsites.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - Go-http-client/1.1 + url: https://func-lvi65vsqwleik.azurewebsites.net:443/api/httptrigger + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: false + body: This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response. + headers: + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:20:32 GMT + Server: + - Kestrel + status: 200 OK + code: 200 + duration: 3.897293833s + - id: 42 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:20:32 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 19:25:32 GMT + Source-Age: + - "5" + 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: + - de4ca05cd6a26cb1f9342aa36c1c7d0bef8e9501 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762432.321425,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 15.991375ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 19:20:32 GMT + Expires: + - Thu, 09 Apr 2026 19:20: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: 20.0375ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -985,23 +32739,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-armappservice/v2.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu?api-version=2023-01-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 @@ -1009,209 +32761,4396 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1845 + content_length: 195006 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu","name":"plan-nqneps3tsi5gu","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"East US 2","tags":{"azd-env-name":"azdtest-db2277e"},"properties":{"serverFarmId":82343,"name":"plan-nqneps3tsi5gu","workerSize":"Small","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Small","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"flex-9ad01624484914297819d457028e8cb8a18061877b59dcf9f00636642d7eeae0-webspace","subscription":"faa080af-c1d8-40ad-9cce-e1a450ca5b57","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"East US 2","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"azd-env-name":"azdtest-db2277e"},"kind":"functionapp","resourceGroup":"rg-azdtest-db2277e","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-155_82343","targetWorkerCount":0,"targetWorkerSizeId":0,"targetWorkerSku":null,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"maximumNumberOfZones":3,"currentNumberOfZonesUtilized":0,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2026-01-12T22:17:10.79","asyncScalingEnabled":false,"isCustomMode":false,"powerState":"Running","eligibleLogCategories":""},"sku":{"name":"FC1","tier":"FlexConsumption","size":"FC1","family":"FC","capacity":0}}' + 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" + } + } + } + ] + }, + { + "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: - - "1845" + - "195006" + 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: - - Mon, 12 Jan 2026 22:18:04 GMT + - Thu, 09 Apr 2026 19:20:32 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:25:32 GMT + Source-Age: + - "5" Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Aspnet-Version: - - 4.0.30319 + - 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: - - b1a464d122a1225833de615f408fac1e - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 739826c7-148f-4bf7-b2e7-96d2561bf549 - X-Ms-Routing-Request-Id: - - EASTUS2:20260112T221804Z:a049001b-5d61-4344-8a27-b005d8797480 - X-Msedge-Ref: - - 'Ref A: 66ED79158F794075912702AF4183D811 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:18:04Z' - X-Powered-By: - - ASP.NET + X-Fastly-Request-Id: + - 9afbe436d08540fb1c3fffe09dd69acec9c270cf + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762432.379789,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 475.509167ms - - id: 15 + duration: 21.747834ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5446 + content_length: 0 transfer_encoding: [] trailer: {} - host: func-nqneps3tsi5gu.scm.azurewebsites.net + host: aka.ms remote_addr: "" request_uri: "" - body: !!binary | - UEsDBBQACAAIABJyLFwAAAAAAAAAAAAAAAAKAAkALmdpdGlnbm9yZVVUBQABxXJlaVSQwW - rzMBCE7/MUhvwnw796hrYJvYQQSumlFCPLG0eJrBVe2cR9+qKYFHoZZj6GZdjWR0h7gdMb - aFZw1zOOUxu8noGaJuURNekkqMmpO/Wo6cW6MyONcmGXKYi70kUlAiZZd7U9K8w7a35jnU - JWwGSRoOYwvXImvjHMU0rN1mYLo+xGzgrTlUiPaFNSztnHXtfjQZwN9JchSsfNIN0UWNF5 - zcCm2pdmlZZ8llj9LqIVNA9gSvW4lnZx9qPEgWNWEMcZNBflOBvMd90dPkzJ1NrrylaHTf - W8ZP7vZEg+cFeZSlL2g/++++1+X518Wdc0aXHlcU1jUFNaPp10X6j/pYVcsKo/AQAA//9Q - SwcIw4UZQwkBAACLAQAAUEsDBBQACAAIABJyLFwAAAAAAAAAAAAAAAAXAAkALnZzY29kZS - 9leHRlbnNpb25zLmpzb25VVAUAAcVyZWmq5lJQUFBQKkpNzs/NTc1LSSzJzM8rVrJSiAZL - gCVzi3UTq0qLUkvy83OK9cqKk/NTUiEiaaV5yRANYNWxXLWAAAAA//9QSwcIhIgLYUUAAA - BQAAAAUEsDBBQACAAIABJyLFwAAAAAAAAAAAAAAAAXAAkASHR0cFRyaWdnZXIvX19pbml0 - X18ucHlVVAUAAcVyZWmcUcuKGzEQvOsrGl88Axux5LiwuQV8NMHkapSZHllBVsvdLdjZkH - 8P87AnIuSyunWpVFWqDtdMrBDJ+5C8Mevs3gujHUrqNFAScALTYIzpcYCrC6lhvL3MoD2o - 5m94Kyjawqcvf4OSKQm+GAC4e9iQBmr2x1EvlOBwOh1BOXiPDHc/yEwdimAPDnhRtvvWzD - LJXRFeJ9hmx+4q1qM2+wnetzMjDJBIZ+LiPB3lcRumw3g7/6B+XLU86vmnUGraBwvfOswK - 310s+JWZuBbITmTjRsH6ess521QpHzGriIxaOP1bXzPsDhgjPcGv6cFvC6dLkKo67Lfy8A - 27otiDlG5qcSgxjna3/KvO+V/H6iew+4AfHJ0IuKWGkEAvCLeCPIIoh+SB+A6vG4Z5GwMx - OMjIQsnF8I498JrK7p7qXKJOi5w76vH18/Pz47I1fwIAAP//UEsHCBXQCm9RAQAA1wIAAF - BLAwQUAAgACAAScixcAAAAAAAAAAAAAAAAGQAJAEh0dHBUcmlnZ2VyL2Z1bmN0aW9uLmpz - b25VVAUAAcVyZWl0jkGKwzAMRfc5hRCzDHOAHGBWs+yuFJMmwhEksmvLhRBy92K31C2lGx - vp6X/e1gBgHAJ7/eOZsAM0hoXVmF+/YpvxmWVksRE7ODYAAFt5AbBPOv3Tleac68XJurgU - S6pwXX2pnFT9IbC1FCocOdCg7CRfsFQg/VJSgS51uZBObqwOZWlJnxcA6F1UfIyn8u/tu/ - Cr0BcTl/RT5SeQpiD38r3J9fstAAD//1BLBwisGjDyqgAAADsBAABQSwMEFAAIAAgAEnIs - XAAAAAAAAAAAAAAAAAoACQBhenVyZS55YW1sVVQFAAHFcmVpJI1LDsIwDET3OYUvAIitV1 - xllJq2qHGsZloJTo+Sruaj0TxHMZX34RkRqRgxgVBJIrQSG2gq+E03WuOj77pBxOt8pmb7 - uWZrmmRcdBWJvX4sU+U+4lIbLwLX6qPa4POB2VTiy6V6+gcAAP//UEsHCK2BDZFsAAAAhg - AAAFBLAwQUAAgACAAScixcAAAAAAAAAAAAAAAAEgAJAGdldHRpbmdfc3RhcnRlZC5tZFVU - BQABxXJlaZRWX2/bNhB/16c4wA+LDUve+jQUw4ChWYsBW1cgSV+MYaDJk8WG5qm8o1Pv0w - 8kJSV24sB9CiLdv9+fO3k2gw8oYv0WbkQFQQMPVjr47b8YEN5Hr8WSr2azGfypWCD2Rgma - t/CXCrqDn6WDNz+++alKETP4FOgLaoEbCVFLDFjddgg7ZT30w6uWnMEAV78MD/4NRPLrHL - TyoMlLipUOU5yjhzRXax3y26pawGLhSCvXcJmYmy9MfrGAGu4YDQgBCwUE1fcwxoDyJhX2 - mJEAS8iPHzr0EKL3qUUu6w4N3HaWc0MwhOx/ENiiQB83znJXWmRmGrglcKiChx0FXAIjwv - pkulTnn6tOpOe3q5W6V82OVyql1+1ALK/6g3TkVzm1HlPnTUYb8Gu0AXfohRv5Jhnqu0IS - Z5acZQFq4VOuAr3S92qL5R0fWHAH1rMo5wbEA5QEesKSe3XE8sjn1GTraKNcIrC12xhU5p - D6PDtIpwRU2yZdlXMwoQLrQU3/Jj1OqT3L60cqtcYeKiBw7Hsq3nxZtRe0mPBcqsCUMJDf - 7FmTwVXm4+rvPI5y80dqitc+37wjg8cEvTzREDlofOlYZYp6W7JqLks6zYh+f35CNfpib4 - NE5QD93gbyyVAQ08psDoVFMLhHR316U0pfk77HkPQ6LZ937dRMB4ph2vGs/lpHFtqNS43h - UsQlr57yBqyCLHwea3J8CgGtGDntRB7p2IPvKWRFwPqWwi6LNahz563ALfL3aBO9lVpKzq - hICrJbT+EZb9eonQpYlmBYHu4oOvPanbnjmEy+BJn2R4+YR4um8NKzgEZjhcLotCUUmzyJ - KpqfN8cSCttPUh65XeaT+sIlTtF9wH1yV+lwdIg3mIwyYWyq6nelu0eFOsVghYEe0pfAYA - Gbem2sNyn3+Arl11frxWKsMJyvS9U7SpvPm+Ebdl02YTJ1awPLyNU0bOQU8PkG0k5X1R/Z - btCpPYLPFyygMocl9A4VI+gO9T1FgVRx/TVafQ95lS8dNqfkjHmiObklNeTz32x+utP5Ih - cMDYwf65PtfboqkwGhql5aGiAPBntHh3xLxmPdUjidYqJgb9lKcfF6G6158mk0pLnZWR2I - qZVG067Q8IwMHVAJ1lmS6XG95zrfyELVbHBYLR3Ww0Wqhepca1L5I35LP1Ow5/TD4uhcg9 - okpcyjD16HtD7lfXAQBvhwjPN1ic2YVmd60qink3GP2rZWQ4pQXmPR4dygxRZF9suHHqz+ - XbOXP/UzCP8HAAD//1BLBwgTJUMStwMAAF8KAABQSwMEFAAIAAgAEnIsXAAAAAAAAAAAAA - AAAAkACQBob3N0Lmpzb25VVAUAAcVyZWlcjz1PxDAMhvf+CssbqIqqY+sG0iExsAAbU2lM - sBScEDvoAOW/o/B1FUuGPO9rP/4YAPCVinISnAF3bsKx/8UUAkvAGXoEAJecI6+LcZIrUQ - 5Ppn8QAHV5zpEl3JIZS9gyAGTdy/IQyeMMViqNR0SHNVZP/u4tU2/hDb1UUsOfSBt+3/Yl - Rgcj6boXVXykoyD34XjNa0maHs2dv9dC7rLK2p3V7f8Vvx22x9/v3OkIZ25y00lf34b2GQ - AA//9QSwcIv0eN8b0AAAAgAQAAUEsDBBQACAAIABJyLFwAAAAAAAAAAAAAAAAQAAkAaW5m - cmEvbWFpbi5iaWNlcFVUBQABxXJlaWySz27aTBTF9/MUZ/FJAxLwQRR1YQkJ1L+RWhpR2H - QTXcYXe1R7xr0zQ5pGvHtlpzEpZGHLHh2f+zvnelFb95ldEcvBbKgWNf36+/bmeqgWOQcj - tonWu4FeUc3we8SSu4vdwYp3NbuI+9KaEjYgBc4RPQp2LBQZhFB6iUjO/kyMkkL5JLIOVF - UQDj6J4TDRQ9WQUP3SuJsZolhXqDOcW7E1yQMqb6g9wd7Lv469YS953WmJaGtuqWuSH/AO - Rpgi570VCvGpCSME30Z/gCGHHcNUTI5zpAYHSyAHStHX3beNeMPhRaycK4683EeWje1jYY - 6cIrcnyzwfpGhW/n6gvR6OoG83s096qFQkKTh+M75hzKFD2vX4WqkDCSIVAXM8QtPvfMzu - MHZUs87Oyxzh3Qkju2A6KtVnlgL6izXig9/Hyfq51f+fBR+7ThZX06vZeHo9ns50C6CAdn - IGLcX4v8ez8Uet0K8j658UugBZd1dHpWqfp4pPq4Q+/Sc7a7g5n9XvXAGh7SmDFAroqg9Z - p8V5GRftdKJX8Y4tlU+xSRHL79v1+7sP29Xbzc3X1d12fXPa5QnzSRwml2r1JwAA//9QSw - cIBnioqMABAAB1AwAAUEsDBBQACAAIABJyLFwAAAAAAAAAAAAAAAAaAAkAaW5mcmEvbWFp - bi5wYXJhbWV0ZXJzLmpzb25VVAUAAcVyZWl0js1KAzEQx+99imHssc3uihf3tsgeBE1FtA - cvZYiDrWwmS5IWtOy7yxjdWwm5/L9+c14A4DK5PXvCFnCf85jaqiqK8ST0wZ4lG/o+RjYu - +D8vVdd1c7uub9Z1U73zOIQvzT1RJM+ZYzKfKcgVrpTggmSWvOWYDkEU1JhaX7HHuYQt6E - kAyHI6xCC6acnzbADgiYajCrg8d2+vz/2ut9ud7R77CX8j06pMDMFRLrzL3YfNXfdyv7H/ - 3YX+6ScAAP//UEsHCNcCn9nBAAAAGAEAAFBLAwQUAAgACAAScixcAAAAAAAAAAAAAAAAFQ - AJAGluZnJhL3Jlc291cmNlcy5iaWNlcFVUBQABxXJlabxWTW/jNhC961fMIQBtIPJXNptU - QIB6vZvW7Sa7iBMs0ItBSWOHiESy/PDGCfzfC1KiLMVpkF56kWVy5s2bp5khJVW0BOQbpg - QvkZtrWiJooxhfR9VmITJqmOD1KlyAQi2syvA3Jazs9QfBItpQBYauNVzAMxD6lMfINzGn - JZLkIMjOmwesW/GAHC7AiK/iJ6qe5exviwsfsqdtqjPFpAvS6w9YfvwS7bih2e9HUQCFle - WZW9RArlimhBYrM/iB6VAzg/rXyWhyEo8n8WhMHOUIwHFNgDi/+Oi5Q25HImiiJM1bBPDA - eF47uRUq5XHBuH10Dk6OBCx3zN37cVBGo9qwDIM63pvArh8BSCUkKsNQJ54UgDNGdUlVOc - 8TWBX4eFkH+15QPmC5t7o3RupvvNgmsKKFRr8YWE2lnAm+YuuACZCjLMTWSbhfA9BGKLrG - 9hKA2UqnS1qIdCa4oYyjIq39DS2sMzh6rt0H+yQGUrGSqu0XnkvBuNEDB7M7eu6gDZwQuz - YmteYeuWFB8TafhtFiqw2WU63ZmmM+z52D2bZhdtHLt/CrM1rglOczwTOrFPJs245S0kdW - 2nLOtaE8w5mwTqjxaNRYsHrrCkuhtlefEpiMPpy/iKIsN6zs6FlXmdyae8H3XDeotM+UnA - zGY9LBcc9dFAGwOsWA96oOJFg3nUClXKAxjK81kMwXQqj5hg+VUtc2VfDhsKqpZDjMRaYH - ZdNDmSiH9MkqrJ5x02jD5i2mUsYBz8Md1jXA1Ln/wPQPkepFVTrLJc0yJ/a1pxUKypFsSb - FrtXlt0m7yGmtYb00rRN/yk3h0etjy2ry736ueds8IQD/YpCvjwlCeU5Uvv94sqg/RjIia - FXm1yWlRiJ+Le6ow/xO30yxDrfed3M3Ytc6imiD6HWkP2/ZOAyfAoQY5rqgtjKdHlZ8LNd - BB8KZv/2v0YRY83yDi5281ntpk2jivSihtWrAsSEeuBUfyb9WyrNl+KkT6mRrqMlIstUZ0 - cppacy8Ue/Iff6hEgVWTubEZyunDQQZry/JeqFx3XjVt4f+1D7Sbmtc8770Z9jOuGGcegx - wDSc/wY559zOPVGM/jD2enJ/H56OQkHq0mZx/TdPTL6WlK+q8fJ1IxnjFJC3+atJhVo2XQ - 2vf23fDO6X9LoMv3th52VQ18D8uhy3QmJL5esy/PzIMLgT9hV1SVb1wLZEH5+68FnTFxeE - cg3eFhGKoEyGWBjzPBtS29tqQ9WC5n45Dp4TdV6FPIEzDKNgNDWCOtgelfdzdflpd317Pb - +bfr5d3NfH+bI2HEHz3vS6F1etdD4Xeh/UDekeifAAAA//9QSwcIksv74+gDAAA1CgAAUE - sDBBQACAAIABJyLFwAAAAAAAAAAAAAAAAQAAkAcmVxdWlyZW1lbnRzLnR4dFVUBQABxXJl - aVzMwQlCMQwG4Pub4gfPHUIQ9wgxpcE2kTSl6PTiwcsb4PsuuDnME2rc10NAnxVS6jJOdZ - tlezwlQBOaGPQGu9WunNiaDdkE1x/B/U/w6pTVYxzHKfsGAAD//1BLBwg3OMZZWgAAAG0A - AABQSwECFAAUAAgACAAScixcw4UZQwkBAACLAQAACgAJAAAAAAAAAAAAAAAAAAAALmdpdG - lnbm9yZVVUBQABxXJlaVBLAQIUABQACAAIABJyLFyEiAthRQAAAFAAAAAXAAkAAAAAAAAA - AAAAAEoBAAAudnNjb2RlL2V4dGVuc2lvbnMuanNvblVUBQABxXJlaVBLAQIUABQACAAIAB - JyLFwV0ApvUQEAANcCAAAXAAkAAAAAAAAAAAAAAN0BAABIdHRwVHJpZ2dlci9fX2luaXRf - Xy5weVVUBQABxXJlaVBLAQIUABQACAAIABJyLFysGjDyqgAAADsBAAAZAAkAAAAAAAAAAA - AAAHwDAABIdHRwVHJpZ2dlci9mdW5jdGlvbi5qc29uVVQFAAHFcmVpUEsBAhQAFAAIAAgA - EnIsXK2BDZFsAAAAhgAAAAoACQAAAAAAAAAAAAAAdgQAAGF6dXJlLnlhbWxVVAUAAcVyZW - lQSwECFAAUAAgACAAScixcEyVDErcDAABfCgAAEgAJAAAAAAAAAAAAAAAjBQAAZ2V0dGlu - Z19zdGFydGVkLm1kVVQFAAHFcmVpUEsBAhQAFAAIAAgAEnIsXL9HjfG9AAAAIAEAAAkACQ - AAAAAAAAAAAAAAIwkAAGhvc3QuanNvblVUBQABxXJlaVBLAQIUABQACAAIABJyLFwGeKio - wAEAAHUDAAAQAAkAAAAAAAAAAAAAACAKAABpbmZyYS9tYWluLmJpY2VwVVQFAAHFcmVpUE - sBAhQAFAAIAAgAEnIsXNcCn9nBAAAAGAEAABoACQAAAAAAAAAAAAAAJwwAAGluZnJhL21h - aW4ucGFyYW1ldGVycy5qc29uVVQFAAHFcmVpUEsBAhQAFAAIAAgAEnIsXJLL++PoAwAANQ - oAABUACQAAAAAAAAAAAAAAOQ0AAGluZnJhL3Jlc291cmNlcy5iaWNlcFVUBQABxXJlaVBL - AQIUABQACAAIABJyLFw3OMZZWgAAAG0AAAAQAAkAAAAAAAAAAAAAAG0RAAByZXF1aXJlbW - VudHMudHh0VVQFAAHFcmVpUEsFBgAAAAALAAsAIgMAAA4SAAAAAA== + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "5446" - Content-Type: - - application/zip User-Agent: - - azsdk-go-funcapp-deploy/1.0.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://func-nqneps3tsi5gu.scm.azurewebsites.net:443/api/publish?RemoteBuild=true - method: POST + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - transfer_encoding: - - chunked + transfer_encoding: [] trailer: {} - content_length: -1 + content_length: 0 uncompressed: false - body: '"94db3275-e36e-423f-ac3b-7aabff93264a"' + body: "" headers: - Content-Type: - - application/json; charset=utf-8 + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "0" Date: - - Mon, 12 Jan 2026 22:18:06 GMT + - Thu, 09 Apr 2026 19:20:32 GMT + Expires: + - Thu, 09 Apr 2026 19:20:32 GMT Location: - - https://func-nqneps3tsi5gu.scm.azurewebsites.net/api/deployments/94db3275-e36e-423f-ac3b-7aabff93264a + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 Server: - Kestrel - Set-Cookie: - - ARRAffinity=d421591a9aaa9ffc43291a27e952f90f7963db524cf5164266cee63fbacd0662;Path=/;HttpOnly;Secure;Domain=func-nqneps3tsi5gu.scm.azurewebsites.net - - ARRAffinitySameSite=d421591a9aaa9ffc43291a27e952f90f7963db524cf5164266cee63fbacd0662;Path=/;HttpOnly;SameSite=None;Secure;Domain=func-nqneps3tsi5gu.scm.azurewebsites.net - X-Ms-Correlation-Id: - - 9112cebe-1692-429d-b2a9-ca404c54236f - status: 202 Accepted - code: 202 - duration: 2.010900042s - - id: 16 + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 25.629083ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1219,7 +37158,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: func-nqneps3tsi5gu.scm.azurewebsites.net + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -1229,38 +37168,966 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-funcapp-deploy/1.0.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://func-nqneps3tsi5gu.scm.azurewebsites.net:443/api/deployments/94db3275-e36e-423f-ac3b-7aabff93264a + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json method: GET response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] trailer: {} - content_length: -1 + content_length: 41722 uncompressed: false - body: '{"id":"94db3275-e36e-423f-ac3b-7aabff93264a","status":4,"status_text":"","author_email":"","author":null,"deployer":"LegionOneDeploy","remoteBuild":true,"message":"","progress":"","received_time":"2026-01-12T22:18:06.633417Z","start_time":"2026-01-12T22:18:06.633417Z","end_time":"2026-01-12T22:19:13.3745596Z","last_success_end_time":"2026-01-12T22:19:13.3745596Z","complete":true,"active":true,"is_temp":false,"is_readonly":false,"url":"https://func-nqneps3tsi5gu.scm.azurewebsites.net/api/deployments/94db3275-e36e-423f-ac3b-7aabff93264a","log_url":"https://func-nqneps3tsi5gu.scm.azurewebsites.net/api/deployments/94db3275-e36e-423f-ac3b-7aabff93264a/log","site_name":"func-nqneps3tsi5gu","build_summary":null}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + 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: - - Mon, 12 Jan 2026 22:19:13 GMT - Server: - - Kestrel - Set-Cookie: - - ARRAffinity=d421591a9aaa9ffc43291a27e952f90f7963db524cf5164266cee63fbacd0662;Path=/;HttpOnly;Secure;Domain=func-nqneps3tsi5gu.scm.azurewebsites.net - - ARRAffinitySameSite=d421591a9aaa9ffc43291a27e952f90f7963db524cf5164266cee63fbacd0662;Path=/;HttpOnly;SameSite=None;Secure;Domain=func-nqneps3tsi5gu.scm.azurewebsites.net - X-Ms-Correlation-Id: - - 879c1f43-3c4d-422d-9956-03d4c555982d + - Thu, 09 Apr 2026 19:20:32 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 19:25:32 GMT + Source-Age: + - "4" + 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: + - e0447cc0638c6304aefe273bb584805aea59d7da + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762432.447373,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 102.949625ms - - id: 17 + duration: 14.9175ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1268,23 +38135,19 @@ 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 User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) - X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu?api-version=2023-01-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json method: GET response: proto: HTTP/2.0 @@ -1292,50 +38155,462 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9546 + content_length: 16828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu","name":"func-nqneps3tsi5gu","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"},"properties":{"name":"func-nqneps3tsi5gu","state":"Running","hostNames":["func-nqneps3tsi5gu.azurewebsites.net"],"webSpace":"flex-9ad01624484914297819d457028e8cb8a18061877b59dcf9f00636642d7eeae0-webspace","selfLink":"https://waws-prod-bn1-155.api.azurewebsites.windows.net:454/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/webspaces/flex-9ad01624484914297819d457028e8cb8a18061877b59dcf9f00636642d7eeae0-webspace/sites/func-nqneps3tsi5gu","repositorySiteName":"func-nqneps3tsi5gu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["func-nqneps3tsi5gu.azurewebsites.net","func-nqneps3tsi5gu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-nqneps3tsi5gu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-nqneps3tsi5gu.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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-12T22:17:53.3333333","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":"","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":{"deployment":{"storage":{"type":"blobcontainer","value":"https://stnqneps3tsi5gu.blob.core.windows.net/func-deploy","authentication":{"type":"systemassignedidentity","userAssignedIdentityResourceId":null,"storageAccountConnectionStringName":null}}},"runtime":{"name":"python","version":"3.11"},"scaleAndConcurrency":{"alwaysReady":null,"maximumInstanceCount":100,"instanceMemoryMB":2048,"triggers":null},"siteUpdateStrategy":{"type":"Recreate"}},"daprConfig":null,"deploymentId":"func-nqneps3tsi5gu","slotName":null,"trafficManagerHostNames":null,"sku":"FlexConsumption","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"useQueryStringAffinity":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"clientCertExclusionEndPoints":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","kind":"functionapp,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.136.3","possibleInboundIpAddresses":"20.119.136.3","inboundIpv6Address":"2603:1030:40c:7::1e","possibleInboundIpv6Addresses":"2603:1030:40c:7::1e","ftpUsername":"func-nqneps3tsi5gu\\$func-nqneps3tsi5gu","ftpsHostName":"ftps://waws-prod-bn1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"130.213.211.141,135.237.212.4,135.224.187.188,135.224.187.166,48.211.225.192,135.237.203.170,52.184.244.40,52.247.19.20,52.251.15.19,52.252.16.56,52.252.16.75,52.252.16.231,20.119.136.3","possibleOutboundIpAddresses":"130.213.211.141,135.237.212.4,135.224.187.188,135.224.187.166,48.211.225.192,135.237.203.170,52.184.244.40,52.247.19.20,52.251.15.19,52.252.16.56,52.252.16.75,52.252.16.231,52.252.17.75,52.252.17.76,52.252.18.18,52.252.18.23,52.252.18.39,52.252.18.59,52.252.21.49,52.252.18.33,52.252.21.175,52.252.22.19,52.252.22.178,52.253.64.5,52.253.64.38,52.253.64.80,52.253.64.150,52.253.64.156,52.253.64.167,52.253.64.225,20.119.136.3","outboundIpv6Addresses":"2603:1030:403:3::197,2603:1030:403:6::289,2603:1030:403:5::277,2603:1030:403:10::2ff,2603:1030:403:12::213,2603:1030:403:3::8e6,2603:1030:403:14::1df,2603:1030:403:5::273,2603:1030:403:3::8d4,2603:1030:403:11::6e,2603:1030:403:5::274,2603:1030:403:7::1ae,2603:1030:40c:7::1e,2603:10e1:100:2::1477:8803","possibleOutboundIpv6Addresses":"2603:1030:403:3::197,2603:1030:403:6::289,2603:1030:403:5::277,2603:1030:403:10::2ff,2603:1030:403:12::213,2603:1030:403:3::8e6,2603:1030:403:14::1df,2603:1030:403:5::273,2603:1030:403:3::8d4,2603:1030:403:11::6e,2603:1030:403:5::274,2603:1030:403:7::1ae,2603:1030:403:17::1bb,2603:1030:403:6::22d,2603:1030:403:17::1bd,2603:1030:403:7::1f2,2603:1030:403:15::4e2,2603:1030:403:17::1be,2603:1030:403:15::4e7,2603:1030:403:14::1e0,2603:1030:403:16::112,2603:1030:403:5::275,2603:1030:403:6::273,2603:1030:403:11::228,2603:1030:403:7::1f3,2603:1030:403:3::8d5,2603:1030:403:7::1f4,2603:1030:403:6::288,2603:1030:403:5::276,2603:1030:403:7::1f5,2603:1030:40c:7::1e,2603:10e1:100:2::1477:8803","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"},"resourceGroup":"rg-azdtest-db2277e","defaultHostName":"func-nqneps3tsi5gu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"35ec44c6-09f4-4d89-9cf8-1f6d791e7787"}}' + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "9546" + - "16828" + 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: - - Mon, 12 Jan 2026 22:19:14 GMT + - Thu, 09 Apr 2026 19:20:32 GMT Etag: - - '"1DC84114BAEDB55"' + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:25:32 GMT + Source-Age: + - "4" Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Aspnet-Version: - - 4.0.30319 + - 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: - - b1a464d122a1225833de615f408fac1e - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - c2fc4445-8d5e-4478-ad23-873722817375 - X-Ms-Routing-Request-Id: - - EASTUS2:20260112T221914Z:6a48528e-7bca-4c5c-819e-69f10319ffdd - X-Msedge-Ref: - - 'Ref A: 0BA6E8E9AA3E4051A621BD71FBF2EDDB Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:14Z' - X-Powered-By: - - ASP.NET + X-Fastly-Request-Id: + - 2e6605f3e67a30ed7eb6cc066c67ca0560d82d41 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760072-MIA + X-Timer: + - S1775762432.473407,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 396.086792ms - - id: 18 + duration: 15.682209ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1356,10 +38631,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-db2277e%27&api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1367,18 +38642,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 959760 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","name":"rg-azdtest-db2277e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","DeleteAfter":"2026-01-12T23:16:56Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","location":"eastus2","name":"azdtest-daa0f52-1775762263","properties":{"correlationId":"cc51b8935c2aed48aed4b21d02d85021","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","resourceName":"rg-azdtest-daa0f52","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT53.2860866S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/providers/Microsoft.Authorization/roleAssignments/4f3ecc16-9711-5ec8-9c97-d8790fb4059d"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik/config/appsettings"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-lvi65vsqwleik.azurewebsites.net"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-04-09T20:18:04Z"},"environmentName":{"type":"String","value":"azdtest-daa0f52"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"14737299990775015593","timestamp":"2026-04-09T19:18:58.2507Z"},"tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "959760" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:14 GMT + - Thu, 09 Apr 2026 19:20:37 GMT Expires: - "-1" Pragma: @@ -1390,21 +38665,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b1a464d122a1225833de615f408fac1e + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 322f33db-2a7e-453e-ba7d-918e2e9a538b + - 7909ebbc-2415-4aa0-a4b5-c4ffab641fe5 X-Ms-Routing-Request-Id: - - EASTUS2:20260112T221914Z:322f33db-2a7e-453e-ba7d-918e2e9a538b + - EASTUS2:20260409T192037Z:7909ebbc-2415-4aa0-a4b5-c4ffab641fe5 X-Msedge-Ref: - - 'Ref A: AD9D7E9EB6BB46B89671B736DF7CA4D3 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:14Z' + - 'Ref A: 16A610384B734F87913D279BC90A9CD9 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:34Z' status: 200 OK code: 200 - duration: 174.931375ms - - id: 19 + duration: 3.413938042s + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1412,7 +38687,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: func-nqneps3tsi5gu.azurewebsites.net + host: management.azure.com remote_addr: "" request_uri: "" body: "" @@ -1423,30 +38698,55 @@ interactions: Authorization: - SANITIZED User-Agent: - - Go-http-client/1.1 - url: https://func-nqneps3tsi5gu.azurewebsites.net:443/api/httptrigger + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 method: GET response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] trailer: {} - content_length: -1 + content_length: 891127 uncompressed: false - body: This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response. + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: + Cache-Control: + - no-cache + Content-Length: + - "891127" Content-Type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:19 GMT - Server: - - Kestrel + - Thu, 09 Apr 2026 19:20:40 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 0a7d0b33890e67e34ef6dad787d8b46f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 26cbe644-bd04-481c-9fba-cbe53aa7e4ce + X-Ms-Routing-Request-Id: + - EASTUS:20260409T192040Z:26cbe644-bd04-481c-9fba-cbe53aa7e4ce + X-Msedge-Ref: + - 'Ref A: F4A7A74C0E3C4A08979D126CF1FAE065 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:38Z' status: 200 OK code: 200 - duration: 4.348112333s - - id: 20 + duration: 2.394603083s + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1460,17 +38760,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1478,18 +38776,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1758274 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=NY9dT4MwGEZ%2fC72GhKImhrtBOze3vrXlLQbvFsWFj5REWQos%2fHfFyd1z8pybcyXvne0rezn1VWexa0r7TeIreeUZmixapi2H%2fuX01VeLcShHEhPqPXqAxSCmIiD%2bn6E7t370LvJ0s00EOztl3pgw6h5YkmjWMhXmW2F4CJgwhXkK%2bPGpKchjFjrJzK8nIsmKUdRFJGoeSuROplRhODwr2nKdJwJpC9o8GFnnT8CaEer9ILBwwLiD6Uxh2g%2bggoDMPgGpcZdyQL05mozE9tK2%2fn%2fdSuaQSYO7FflmSb%2fRPP8A","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1758274" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:27 GMT + - Thu, 09 Apr 2026 19:20:41 GMT Expires: - "-1" Pragma: @@ -1501,21 +38799,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cc3976d9-2741-4a1e-af74-bb136e34e8cf + - 1577713e-3f6b-4d33-86b7-60150b15c360 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221928Z:cc3976d9-2741-4a1e-af74-bb136e34e8cf + - EASTUS:20260409T192041Z:1577713e-3f6b-4d33-86b7-60150b15c360 X-Msedge-Ref: - - 'Ref A: ACEF5DAD82A84107BD70C19DFF7B26C5 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:21Z' + - 'Ref A: 54E511F5344A4796BE9F8B16554D8365 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:40Z' status: 200 OK code: 200 - duration: 6.373512917s - - id: 21 + duration: 1.429233584s + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1534,10 +38832,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=NY9dT4MwGEZ%2FC72GhKImhrtBOze3vrXlLQbvFsWFj5REWQos%2FHfFyd1z8pybcyXvne0rezn1VWexa0r7TeIreeUZmixapi2H%2FuX01VeLcShHEhPqPXqAxSCmIiD%2Bn6E7t370LvJ0s00EOztl3pgw6h5YkmjWMhXmW2F4CJgwhXkK%2BPGpKchjFjrJzK8nIsmKUdRFJGoeSuROplRhODwr2nKdJwJpC9o8GFnnT8CaEer9ILBwwLiD6Uxh2g%2BggoDMPgGpcZdyQL05mozE9tK2%2Fn%2FdSuaQSYO7FflmSb%2FRPP8A&api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1545,18 +38843,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 269711 + content_length: 415580 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=VY%2fBboJAFEW%2fhVlLMoMladgBg9XqvCnDezR2Zyw1VDIkLYYphn%2bv1rJweXLvuck9s31ru9qedl3dWmyPlf1m0Zm9ZgVSEbDInppm9o%2fza2Ir173svrr6KqyrHxYx4T16gFunhq3PZn8N0%2fZTJuaBZ46LRMlDn9ObVJQ%2fgEwSIxuZ83KhKOOAicyxTAHfP4wAvSl4ryVdeirQuBIK9w7kKlSDCiAVOXL3nIsmM2WiUDRgKCT9WT6BjB0MJC5uCJK4QuUADxxi32fjjGXx3S3QBpdpBmjiDRX3ZyeidaEJlxPeFm40jr8%3d\u0026api-version=2021-04-01","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","location":"eastus2","name":"azdtest-db2277e-1768256196","properties":{"correlationId":"ef1cc409200f16fa16c9cbc455eb7eb8","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","resourceName":"rg-azdtest-db2277e","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT1M2.8761262S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/providers/Microsoft.Authorization/roleAssignments/1327ccfa-a2df-5400-9b65-f6d7db8c4a2a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu/config/appsettings"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-nqneps3tsi5gu.azurewebsites.net"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-01-12T23:16:56Z"},"environmentName":{"type":"String","value":"azdtest-db2277e"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"2950367126166403802","timestamp":"2026-01-12T22:17:59.3751285Z"},"tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "269711" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:30 GMT + - Thu, 09 Apr 2026 19:20:42 GMT Expires: - "-1" Pragma: @@ -1568,21 +38866,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 465dc95b-3ddc-49b0-aa4c-570ef9247d14 + - dbe6e7a9-5e05-41a1-89ef-56b9185871b1 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221930Z:465dc95b-3ddc-49b0-aa4c-570ef9247d14 + - EASTUS2:20260409T192042Z:dbe6e7a9-5e05-41a1-89ef-56b9185871b1 X-Msedge-Ref: - - 'Ref A: C07BD1B45DA14E848196DF407996EDA4 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:28Z' + - 'Ref A: 57E95D1C5507495F86F28772D679A69B Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:42Z' status: 200 OK code: 200 - duration: 1.711016166s - - id: 22 + duration: 749.89525ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1601,10 +38899,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=VY%2FBboJAFEW%2FhVlLMoMladgBg9XqvCnDezR2Zyw1VDIkLYYphn%2Bv1rJweXLvuck9s31ru9qedl3dWmyPlf1m0Zm9ZgVSEbDInppm9o%2Fza2Ir173svrr6KqyrHxYx4T16gFunhq3PZn8N0%2FZTJuaBZ46LRMlDn9ObVJQ%2FgEwSIxuZ83KhKOOAicyxTAHfP4wAvSl4ryVdeirQuBIK9w7kKlSDCiAVOXL3nIsmM2WiUDRgKCT9WT6BjB0MJC5uCJK4QuUADxxi32fjjGXx3S3QBpdpBmjiDRX3ZyeidaEJlxPeFm40jr8%3D&api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1612,18 +38910,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:30 GMT + - Thu, 09 Apr 2026 19:20:42 GMT Expires: - "-1" Pragma: @@ -1635,21 +38933,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 20b83b4f-265e-4f6b-bd67-387a858e27e6 + - c09c43d2-d701-4897-90cc-125bf199a108 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221931Z:20b83b4f-265e-4f6b-bd67-387a858e27e6 + - EASTUS2:20260409T192043Z:c09c43d2-d701-4897-90cc-125bf199a108 X-Msedge-Ref: - - 'Ref A: EA2E1A0EABEC4830824C24D651CB4325 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:30Z' + - 'Ref A: 4D38DF289DC640108EE77227A518A1F3 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:42Z' status: 200 OK code: 200 - duration: 810.723291ms - - id: 23 + duration: 462.656917ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1670,10 +38968,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1681,18 +38979,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2864 + content_length: 2861 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"},"properties":{"templateHash":"2950367126166403802","parameters":{"environmentName":{"type":"String","value":"azdtest-db2277e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-12T23:16:56Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-12T22:17:59.3751285Z","duration":"PT1M2.8761262S","correlationId":"ef1cc409200f16fa16c9cbc455eb7eb8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-db2277e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-nqneps3tsi5gu.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/providers/Microsoft.Authorization/roleAssignments/1327ccfa-a2df-5400-9b65-f6d7db8c4a2a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu/config/appsettings"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"},"properties":{"templateHash":"14737299990775015593","parameters":{"environmentName":{"type":"String","value":"azdtest-daa0f52"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:18:04Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:18:58.2507Z","duration":"PT53.2860866S","correlationId":"cc51b8935c2aed48aed4b21d02d85021","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-daa0f52"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-lvi65vsqwleik.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/providers/Microsoft.Authorization/roleAssignments/4f3ecc16-9711-5ec8-9c97-d8790fb4059d"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik/config/appsettings"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2864" + - "2861" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:31 GMT + - Thu, 09 Apr 2026 19:20:43 GMT Expires: - "-1" Pragma: @@ -1704,21 +39002,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7fb05752-59d2-426f-9f36-7b1deb3542ca + - 6a183b7d-2d96-4b27-b95c-783d18ff3ebf X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260112T221931Z:7fb05752-59d2-426f-9f36-7b1deb3542ca + - EASTUS2:20260409T192043Z:6a183b7d-2d96-4b27-b95c-783d18ff3ebf X-Msedge-Ref: - - 'Ref A: 67CB8DAB63CE4C5FAAF1921001D8AC01 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:31Z' + - 'Ref A: 228A2D9F706A4F868B0C4ED7DCA37096 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:43Z' status: 200 OK code: 200 - duration: 206.637459ms - - id: 24 + duration: 100.469125ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1739,10 +39037,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/resources?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1752,7 +39050,7 @@ interactions: trailer: {} content_length: 1202 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverFarms/plan-nqneps3tsi5gu","name":"plan-nqneps3tsi5gu","type":"Microsoft.Web/serverFarms","sku":{"name":"FC1","tier":"FlexConsumption","size":"FC1","family":"FC","capacity":0},"kind":"functionapp","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu","name":"stnqneps3tsi5gu","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu","name":"func-nqneps3tsi5gu","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"eastus2","identity":{"principalId":"35ec44c6-09f4-4d89-9cf8-1f6d791e7787","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik","name":"stlvi65vsqwleik","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverFarms/plan-lvi65vsqwleik","name":"plan-lvi65vsqwleik","type":"Microsoft.Web/serverFarms","sku":{"name":"FC1","tier":"FlexConsumption","size":"FC1","family":"FC","capacity":0},"kind":"functionapp","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik","name":"func-lvi65vsqwleik","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"eastus2","identity":{"principalId":"2bb34cfc-c882-4087-ba5d-bd47939045a5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-daa0f52","azd-service-name":"func"}}]}' headers: Cache-Control: - no-cache @@ -1761,7 +39059,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:31 GMT + - Thu, 09 Apr 2026 19:20:43 GMT Expires: - "-1" Pragma: @@ -1773,21 +39071,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 47c388eb-67c4-4d59-8cda-03fd20d48e10 + - a83af9f2-ecfc-4943-b122-a176a834a32d X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221931Z:47c388eb-67c4-4d59-8cda-03fd20d48e10 + - EASTUS2:20260409T192043Z:a83af9f2-ecfc-4943-b122-a176a834a32d X-Msedge-Ref: - - 'Ref A: 8DB8A6D817834DEAB77F1F63184B108C Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:31Z' + - 'Ref A: 0A1452607A83481B930923F18A1E2186 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:43Z' status: 200 OK code: 200 - duration: 204.019125ms - - id: 25 + duration: 67.888458ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1808,10 +39106,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1819,18 +39117,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2864 + content_length: 2861 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"},"properties":{"templateHash":"2950367126166403802","parameters":{"environmentName":{"type":"String","value":"azdtest-db2277e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-12T23:16:56Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-12T22:17:59.3751285Z","duration":"PT1M2.8761262S","correlationId":"ef1cc409200f16fa16c9cbc455eb7eb8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-db2277e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-nqneps3tsi5gu.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/providers/Microsoft.Authorization/roleAssignments/1327ccfa-a2df-5400-9b65-f6d7db8c4a2a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu/config/appsettings"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"},"properties":{"templateHash":"14737299990775015593","parameters":{"environmentName":{"type":"String","value":"azdtest-daa0f52"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:18:04Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:18:58.2507Z","duration":"PT53.2860866S","correlationId":"cc51b8935c2aed48aed4b21d02d85021","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-daa0f52"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-lvi65vsqwleik.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/providers/Microsoft.Authorization/roleAssignments/4f3ecc16-9711-5ec8-9c97-d8790fb4059d"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik/config/appsettings"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2864" + - "2861" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:31 GMT + - Thu, 09 Apr 2026 19:20:43 GMT Expires: - "-1" Pragma: @@ -1842,21 +39140,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f0e54067-8cf8-4e92-8a28-0eaefbb9c9cb + - 915305e1-0f75-48c1-a3b1-e00ff291d6ef X-Ms-Routing-Request-Id: - - EASTUS2:20260112T221931Z:f0e54067-8cf8-4e92-8a28-0eaefbb9c9cb + - EASTUS:20260409T192043Z:915305e1-0f75-48c1-a3b1-e00ff291d6ef X-Msedge-Ref: - - 'Ref A: 13334E76965445DA9C1F3D20EF2CDC14 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:31Z' + - 'Ref A: C141D659E9FE4A0ABA68EDF82EFC37DD Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:43Z' status: 200 OK code: 200 - duration: 134.001542ms - - id: 26 + duration: 134.156375ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1877,10 +39175,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/resources?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1890,7 +39188,7 @@ interactions: trailer: {} content_length: 1202 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverFarms/plan-nqneps3tsi5gu","name":"plan-nqneps3tsi5gu","type":"Microsoft.Web/serverFarms","sku":{"name":"FC1","tier":"FlexConsumption","size":"FC1","family":"FC","capacity":0},"kind":"functionapp","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu","name":"stnqneps3tsi5gu","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu","name":"func-nqneps3tsi5gu","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"eastus2","identity":{"principalId":"35ec44c6-09f4-4d89-9cf8-1f6d791e7787","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-db2277e","azd-service-name":"func"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik","name":"stlvi65vsqwleik","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverFarms/plan-lvi65vsqwleik","name":"plan-lvi65vsqwleik","type":"Microsoft.Web/serverFarms","sku":{"name":"FC1","tier":"FlexConsumption","size":"FC1","family":"FC","capacity":0},"kind":"functionapp","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik","name":"func-lvi65vsqwleik","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"eastus2","identity":{"principalId":"2bb34cfc-c882-4087-ba5d-bd47939045a5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-daa0f52","azd-service-name":"func"}}]}' headers: Cache-Control: - no-cache @@ -1899,7 +39197,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:19:31 GMT + - Thu, 09 Apr 2026 19:20:43 GMT Expires: - "-1" Pragma: @@ -1911,21 +39209,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b9eb6356-2737-4bdf-9ff7-c0eb48cf194f + - 1562bc22-7827-47c3-b56f-713c8ac891af X-Ms-Routing-Request-Id: - - WESTUS2:20260112T221932Z:b9eb6356-2737-4bdf-9ff7-c0eb48cf194f + - EASTUS2:20260409T192043Z:1562bc22-7827-47c3-b56f-713c8ac891af X-Msedge-Ref: - - 'Ref A: 9C9EC9B016DB42A285B431B403E03FC1 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:31Z' + - 'Ref A: 045D146E61924752B1D386656F0646D8 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:43Z' status: 200 OK code: 200 - duration: 266.729292ms - - id: 27 + duration: 75.012042ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1946,10 +39244,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-db2277e?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-daa0f52?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1966,11 +39264,11 @@ interactions: Content-Length: - "0" Date: - - Mon, 12 Jan 2026 22:19:32 GMT + - Thu, 09 Apr 2026 19:20:43 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQjIyNzdFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639038532189653701&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=BNE0KaE5udhFiXlmHFjRVMMP3lFikTMIp-STnhX6PzCAdlnC9BhTvj1-eu4FI4OS505NMCy-SpAMPxKLf8iMWQi4igQ9EVMvgYbRUSgLpQt_1vekIdZU_lZCwFOXN80voNR2O19f6ND67_yrN3gQQC8UD1oGgIHp9PBuy6lobTr3fvbi7V4Ah1Ov5XSuXdM0ICZ3U-V4A9WaaQRc_BW6iCPHq--v0z6IQtC_uDTEDahF-f9VfTcH9DEDktyRvSRRuLjladwDNhWnPbURtC8h0R03TlwWq4Awq3erpB4KeLzQftrAs7SIAaUhDTHONEPqOFpb1du-DprMGLv4ZMl-GQ&h=nUqESomoBP6sdDe3uGLS2cXzXJFa-fux4QrK4PcCRZc + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQUEwRjUyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113592895168948&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Hf2DZzL8Re1MvVowbuCLDOi1AGP1VtpUw4yhURc3eQkmNos2WbRb140ZUXBj9ayrI2nVRjcmr23a-kyT-uaY0G7wKd8hjGAavUjIyM2jqvRIOvMDJcQaYGOJUt3g8Gn9AhaXL44KyBRW8jl5lEbg4UzB9UiRLxiENxTrTcWh5T-NylgCdN1-M7SZaGUPNdlP8wu1wsvuT6lL1PTWUEEZQLCI6LNQhRTnq8Pqcf9r5W-kbFev9eY7_4jWFSXMZnM8e_-OUXFXunL-QrNdKitLTM9c6s71_mfp5yCeGx3gufQUOQ3IMErWOPKm0Niz6Mw8STFeslDuSVWfNcM_nE3H4Q&h=eqmAFFl7EdMzRaxEfFuvRlS4X4RmmSu7Q5BeON8c8QQ Pragma: - no-cache Retry-After: @@ -1982,21 +39280,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - 02bb8910-e791-4fcf-a516-09d582de8fba + - 3b30cb15-0f2b-4f93-bf9c-2a1098b765b0 X-Ms-Routing-Request-Id: - - EASTUS2:20260112T221932Z:02bb8910-e791-4fcf-a516-09d582de8fba + - EASTUS2:20260409T192044Z:3b30cb15-0f2b-4f93-bf9c-2a1098b765b0 X-Msedge-Ref: - - 'Ref A: F9F5362029D640349FC51F2B7AC09804 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:19:32Z' + - 'Ref A: C6ADF76BBB834D8881FED3990239033B Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:20:43Z' status: 202 Accepted code: 202 - duration: 342.718291ms - - id: 28 + duration: 224.231583ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2015,10 +39313,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQjIyNzdFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639038532189653701&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=BNE0KaE5udhFiXlmHFjRVMMP3lFikTMIp-STnhX6PzCAdlnC9BhTvj1-eu4FI4OS505NMCy-SpAMPxKLf8iMWQi4igQ9EVMvgYbRUSgLpQt_1vekIdZU_lZCwFOXN80voNR2O19f6ND67_yrN3gQQC8UD1oGgIHp9PBuy6lobTr3fvbi7V4Ah1Ov5XSuXdM0ICZ3U-V4A9WaaQRc_BW6iCPHq--v0z6IQtC_uDTEDahF-f9VfTcH9DEDktyRvSRRuLjladwDNhWnPbURtC8h0R03TlwWq4Awq3erpB4KeLzQftrAs7SIAaUhDTHONEPqOFpb1du-DprMGLv4ZMl-GQ&h=nUqESomoBP6sdDe3uGLS2cXzXJFa-fux4QrK4PcCRZc + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQUEwRjUyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113592895168948&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Hf2DZzL8Re1MvVowbuCLDOi1AGP1VtpUw4yhURc3eQkmNos2WbRb140ZUXBj9ayrI2nVRjcmr23a-kyT-uaY0G7wKd8hjGAavUjIyM2jqvRIOvMDJcQaYGOJUt3g8Gn9AhaXL44KyBRW8jl5lEbg4UzB9UiRLxiENxTrTcWh5T-NylgCdN1-M7SZaGUPNdlP8wu1wsvuT6lL1PTWUEEZQLCI6LNQhRTnq8Pqcf9r5W-kbFev9eY7_4jWFSXMZnM8e_-OUXFXunL-QrNdKitLTM9c6s71_mfp5yCeGx3gufQUOQ3IMErWOPKm0Niz6Mw8STFeslDuSVWfNcM_nE3H4Q&h=eqmAFFl7EdMzRaxEfFuvRlS4X4RmmSu7Q5BeON8c8QQ method: GET response: proto: HTTP/2.0 @@ -2035,7 +39333,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 12 Jan 2026 22:20:34 GMT + - Thu, 09 Apr 2026 19:21:44 GMT Expires: - "-1" Pragma: @@ -2047,21 +39345,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6d7efd57-ec4b-4575-ab46-6a17acddaf2f + - 837f6cb9-7169-4e20-a091-40801753c366 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260112T222034Z:6d7efd57-ec4b-4575-ab46-6a17acddaf2f + - EASTUS2:20260409T192144Z:837f6cb9-7169-4e20-a091-40801753c366 X-Msedge-Ref: - - 'Ref A: A5BEC669DB9442DC9F1C971BE1E60482 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:20:34Z' + - 'Ref A: 1235B3CAF30241D394EA7DAB985461F5 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:21:44Z' status: 200 OK code: 200 - duration: 494.819625ms - - id: 29 + duration: 136.767708ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2082,10 +39380,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2093,18 +39391,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2864 + content_length: 2861 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-db2277e","azd-layer-name":"","azd-provision-param-hash":"3bfcd3ed2f6d01b0addd6af0dac5480c84d33f5eccfbed5df9a7f7d1f1e590f1"},"properties":{"templateHash":"2950367126166403802","parameters":{"environmentName":{"type":"String","value":"azdtest-db2277e"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-12T23:16:56Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-12T22:17:59.3751285Z","duration":"PT1M2.8761262S","correlationId":"ef1cc409200f16fa16c9cbc455eb7eb8","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-db2277e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-nqneps3tsi5gu.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Storage/storageAccounts/stnqneps3tsi5gu/providers/Microsoft.Authorization/roleAssignments/1327ccfa-a2df-5400-9b65-f6d7db8c4a2a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/serverfarms/plan-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db2277e/providers/Microsoft.Web/sites/func-nqneps3tsi5gu/config/appsettings"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-daa0f52","azd-layer-name":"","azd-provision-param-hash":"d122836fc89bcda54af13ce8bbc2d93f5d6af46724004608f7e9d4298dc3962c"},"properties":{"templateHash":"14737299990775015593","parameters":{"environmentName":{"type":"String","value":"azdtest-daa0f52"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:18:04Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:18:58.2507Z","duration":"PT53.2860866S","correlationId":"cc51b8935c2aed48aed4b21d02d85021","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-daa0f52"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_FUNCTION_URI":{"type":"String","value":"https://func-lvi65vsqwleik.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/blobServices/default/containers/func-deploy"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Storage/storageAccounts/stlvi65vsqwleik/providers/Microsoft.Authorization/roleAssignments/4f3ecc16-9711-5ec8-9c97-d8790fb4059d"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/serverfarms/plan-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-daa0f52/providers/Microsoft.Web/sites/func-lvi65vsqwleik/config/appsettings"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2864" + - "2861" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:20:34 GMT + - Thu, 09 Apr 2026 19:21:44 GMT Expires: - "-1" Pragma: @@ -2116,21 +39414,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 909a878e-8a63-49fe-bb6d-4ff913af4320 + - b1bb7553-89f1-41a6-8b3f-bb433e684110 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T222034Z:909a878e-8a63-49fe-bb6d-4ff913af4320 + - EASTUS:20260409T192144Z:b1bb7553-89f1-41a6-8b3f-bb433e684110 X-Msedge-Ref: - - 'Ref A: D22CF0D12BAB4F66B9D1A91D5B7C7E9C Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:20:34Z' + - 'Ref A: DA9CF913CD2B4F3896F413D84BE7ACBF Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:21:44Z' status: 200 OK code: 200 - duration: 479.57525ms - - id: 30 + duration: 116.590375ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2141,7 +39439,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-db2277e"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-daa0f52"}}' form: {} headers: Accept: @@ -2155,10 +39453,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2168,10 +39466,10 @@ interactions: trailer: {} content_length: 569 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-db2277e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-12T22:20:35.4348919Z","duration":"PT0.000723S","correlationId":"e19dbc830f75b7a57ffeb27b0ce69e30","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-daa0f52"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T19:21:45.2675244Z","duration":"PT0.000518S","correlationId":"0a7d0b33890e67e34ef6dad787d8b46f","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196/operationStatuses/08584333504500302878?api-version=2021-04-01&t=639038532369036776&c=MIIHhzCCBm-gAwIBAgITfAn7mmydTDDI06tIDgAACfuabDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMTEwMDUyMDIxWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKXEUJ12GT4s62XIdcMG6gz2NK3BLA_h7Dp-DJeE3HZW4qFntiPyQ7LIbtVZLCWGH6KWmd94qzI8YonYeMR8UBu9sgNjbf-NozdN1x6M93y7NuBd22sL3qxmv_VHayRLdF4ck21TKRus3r4x0A9nwESORSa7AdrWhGWNA4PZTnOpS5MnsIPimQVIcpfsp2bySD1Kvl1NJ2Tv6jBtVEKjVp5hRHLXiYuvfj35PCFA9cy8uBgM6CkDQv43Rox-nPyKinrnTsSsa5nKMiKnNz8Cl1L7E08tjhy_YnSJs5j9JLtd6aKNrJYjmo_Yzh7p075BvL7_z3_2O-534VVhDHbqV6UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQIhFuW7858vGGlXuAzT5FddW1i4zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIGq8Av4Loc6eIT9KgL3_SQlLzVYuY3EuhkXMMXK8LYKH9g05bXRBjZBEP1OeUFaLu29XscVPSD6Y77wbidVS67g3nAW2m7q0W4iaLuPbY6QpOxc4OsVL-tw7jAkmhGdpB-CzxYYiHABKj3qxqmfFxc95zcFt958wEq5I7mq3_C00QrQOwuLjVk3koJZmPvSrMy3DIcDHReSSu1tkep63YukKVxOWW1U63DgkgAbRx8o79qmp-RfiOtMxBvrag_LgylBZJDfzLlGnyvvXtAjdvQbEcE43nV9xabSHXvGfG-akLaDdcymX0JNYlEEvkaRO9WYj-WChhtJeEr2qMyvvMU&s=ewNA4y18NSqcF322_FDG82yPtFWdeuzHHLsGwMjNdM0L5nbJ2EG-x2fiSrnX6rPL7ZVSztx8R4od3ZJv0ahoelIYDhts-Dr4tUb6lQ1JTxS5zwJXC5NEKQGQqneQ5jH87Glv3xRvstdSe_IVXTyR5FEQLr9dLHPioyYUCthTpWHt0rj8N-h2Is11r9tYuki5jieMeovd_FzhVr24Y63OV4FbMUgSdRFfVA9srHmz6x_QaMSWfjif7G6uwfIn2dbDstTKSa5LCq3BHv5yXUH4P5RMME-6nG5hSraeGLp31AwPRwruGhLWTxsoVRYj1W8CxsQmmbbz5Hq3irNS4FKAgQ&h=3Set2MAc7hvrb_lhI1axKOt0XWmMIwuMpSRoddrN_7o + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263/operationStatuses/08584258443802037774?api-version=2021-04-01&t=639113593059706756&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=5oZcJnBlgQKtWvPi_z-mkec__AfNsX5PPD1ICXXMRjd27gYjqGc920ue9Ii45gz_HruvSrbT4JbeoXmxXZgvVKFn4jJh6aPp4JynuEZnKEHgjnC1HfoFX7Wrjw1brYAnB8MumTgBG81GH_DBrgLZwqWEa0I0je3MWP40faKkLAM7dFU9XwTVinxOQ3hV0WHfo_1oBHPB5zPpv6ql-ROatsfc0agjJoumlUTdblpCBZNc9JCMj1-upQ7n7rYC8glkTTBtJutl7VqDY-NI_eyLOdo5SXPMDBFXfqnWFrAxAyR2b0pMDfcN1NTQHjhQ5OETlw_ejB4SeoqdTLAteAHbbQ&h=FqR09lNWyluzdb1nn5eN0FgLGhTFU6UwKYWR6GQUgRg Cache-Control: - no-cache Content-Length: @@ -2179,7 +39477,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:20:36 GMT + - Thu, 09 Apr 2026 19:21:45 GMT Expires: - "-1" Pragma: @@ -2191,23 +39489,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Deployment-Engine-Version: - - 1.560.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 79fbbe77-20c2-4501-b60a-07703fc2f000 + - 1cc358d7-8764-4d17-995b-7767ff4edc65 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260112T222036Z:79fbbe77-20c2-4501-b60a-07703fc2f000 + - EASTUS:20260409T192146Z:1cc358d7-8764-4d17-995b-7767ff4edc65 X-Msedge-Ref: - - 'Ref A: CA5445794A36452F9FAE45C5D9B435C3 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:20:35Z' + - 'Ref A: D2085BA723A34149B7F7282AD6761804 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:21:44Z' status: 200 OK code: 200 - duration: 1.921159875s - - id: 31 + duration: 1.176384083s + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2226,10 +39524,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196/operationStatuses/08584333504500302878?api-version=2021-04-01&t=639038532369036776&c=MIIHhzCCBm-gAwIBAgITfAn7mmydTDDI06tIDgAACfuabDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjYwMTEwMDUyMDIxWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKXEUJ12GT4s62XIdcMG6gz2NK3BLA_h7Dp-DJeE3HZW4qFntiPyQ7LIbtVZLCWGH6KWmd94qzI8YonYeMR8UBu9sgNjbf-NozdN1x6M93y7NuBd22sL3qxmv_VHayRLdF4ck21TKRus3r4x0A9nwESORSa7AdrWhGWNA4PZTnOpS5MnsIPimQVIcpfsp2bySD1Kvl1NJ2Tv6jBtVEKjVp5hRHLXiYuvfj35PCFA9cy8uBgM6CkDQv43Rox-nPyKinrnTsSsa5nKMiKnNz8Cl1L7E08tjhy_YnSJs5j9JLtd6aKNrJYjmo_Yzh7p075BvL7_z3_2O-534VVhDHbqV6UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBQIhFuW7858vGGlXuAzT5FddW1i4zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIGq8Av4Loc6eIT9KgL3_SQlLzVYuY3EuhkXMMXK8LYKH9g05bXRBjZBEP1OeUFaLu29XscVPSD6Y77wbidVS67g3nAW2m7q0W4iaLuPbY6QpOxc4OsVL-tw7jAkmhGdpB-CzxYYiHABKj3qxqmfFxc95zcFt958wEq5I7mq3_C00QrQOwuLjVk3koJZmPvSrMy3DIcDHReSSu1tkep63YukKVxOWW1U63DgkgAbRx8o79qmp-RfiOtMxBvrag_LgylBZJDfzLlGnyvvXtAjdvQbEcE43nV9xabSHXvGfG-akLaDdcymX0JNYlEEvkaRO9WYj-WChhtJeEr2qMyvvMU&s=ewNA4y18NSqcF322_FDG82yPtFWdeuzHHLsGwMjNdM0L5nbJ2EG-x2fiSrnX6rPL7ZVSztx8R4od3ZJv0ahoelIYDhts-Dr4tUb6lQ1JTxS5zwJXC5NEKQGQqneQ5jH87Glv3xRvstdSe_IVXTyR5FEQLr9dLHPioyYUCthTpWHt0rj8N-h2Is11r9tYuki5jieMeovd_FzhVr24Y63OV4FbMUgSdRFfVA9srHmz6x_QaMSWfjif7G6uwfIn2dbDstTKSa5LCq3BHv5yXUH4P5RMME-6nG5hSraeGLp31AwPRwruGhLWTxsoVRYj1W8CxsQmmbbz5Hq3irNS4FKAgQ&h=3Set2MAc7hvrb_lhI1axKOt0XWmMIwuMpSRoddrN_7o + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263/operationStatuses/08584258443802037774?api-version=2021-04-01&t=639113593059706756&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=5oZcJnBlgQKtWvPi_z-mkec__AfNsX5PPD1ICXXMRjd27gYjqGc920ue9Ii45gz_HruvSrbT4JbeoXmxXZgvVKFn4jJh6aPp4JynuEZnKEHgjnC1HfoFX7Wrjw1brYAnB8MumTgBG81GH_DBrgLZwqWEa0I0je3MWP40faKkLAM7dFU9XwTVinxOQ3hV0WHfo_1oBHPB5zPpv6ql-ROatsfc0agjJoumlUTdblpCBZNc9JCMj1-upQ7n7rYC8glkTTBtJutl7VqDY-NI_eyLOdo5SXPMDBFXfqnWFrAxAyR2b0pMDfcN1NTQHjhQ5OETlw_ejB4SeoqdTLAteAHbbQ&h=FqR09lNWyluzdb1nn5eN0FgLGhTFU6UwKYWR6GQUgRg method: GET response: proto: HTTP/2.0 @@ -2248,7 +39546,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:21:07 GMT + - Thu, 09 Apr 2026 19:22:15 GMT Expires: - "-1" Pragma: @@ -2260,21 +39558,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b623342a-4852-4e6b-aee0-93d5c398791b + - dae0d021-de0a-45f5-a2b9-524c8a4bb28a X-Ms-Routing-Request-Id: - - WESTUS2:20260112T222107Z:b623342a-4852-4e6b-aee0-93d5c398791b + - EASTUS2:20260409T192216Z:dae0d021-de0a-45f5-a2b9-524c8a4bb28a X-Msedge-Ref: - - 'Ref A: CE4AC5AE42F443FC95ABC2951FD3DBA2 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:21:07Z' + - 'Ref A: 7E483071C80E480EB59A5A96ADE5BBA8 Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:22:16Z' status: 200 OK code: 200 - duration: 447.970708ms - - id: 32 + duration: 101.761375ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2293,10 +39591,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196?api-version=2021-04-01 + - 0a7d0b33890e67e34ef6dad787d8b46f + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2306,7 +39604,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-db2277e-1768256196","name":"azdtest-db2277e-1768256196","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-db2277e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-12T22:20:39.1778457Z","duration":"PT3.7429538S","correlationId":"e19dbc830f75b7a57ffeb27b0ce69e30","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-daa0f52-1775762263","name":"azdtest-daa0f52-1775762263","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-daa0f52"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:21:46.2820157Z","duration":"PT1.0144913S","correlationId":"0a7d0b33890e67e34ef6dad787d8b46f","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -2315,7 +39613,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 12 Jan 2026 22:21:07 GMT + - Thu, 09 Apr 2026 19:22:16 GMT Expires: - "-1" Pragma: @@ -2327,21 +39625,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e19dbc830f75b7a57ffeb27b0ce69e30 + - 0a7d0b33890e67e34ef6dad787d8b46f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 06a84c90-c523-4d6b-b956-db20c8bbe7ec + - 57cf81b0-35fe-4704-bfde-ed1838a5d9c4 X-Ms-Routing-Request-Id: - - WESTUS2:20260112T222108Z:06a84c90-c523-4d6b-b956-db20c8bbe7ec + - EASTUS:20260409T192216Z:57cf81b0-35fe-4704-bfde-ed1838a5d9c4 X-Msedge-Ref: - - 'Ref A: 8F48C83AE6AF47CBB8ED2BAFB5903592 Ref B: CO6AA3150217051 Ref C: 2026-01-12T22:21:07Z' + - 'Ref A: 4FE02F1D799A44ECA5CB1AA64238C2DE Ref B: BN1AA2051013051 Ref C: 2026-04-09T19:22:16Z' status: 200 OK code: 200 - duration: 402.117708ms + duration: 113.08625ms --- -env_name: azdtest-db2277e -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1768256196" +env_name: azdtest-daa0f52 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775762263" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml index c9f11a02f9f..5da62c57a78 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml @@ -2,6 +2,9228 @@ version: 2 interactions: - id: 0 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:30 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 19:20:30 GMT + Source-Age: + - "40" + 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: + - 87207c2acd7003aeb75e5a509a7e6f497bbe959e + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762130.150465,VS0,VE2 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 72.919958ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 19:15:30 GMT + Expires: + - Thu, 09 Apr 2026 19:15:30 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: 103.814417ms + - id: 2 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:30 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 19:20:30 GMT + Source-Age: + - "40" + 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: + - 2f74cfee104e2ea68e0be36e4120738eeb0bdfd1 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762130.307737,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 21.132583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 19:15:30 GMT + Expires: + - Thu, 09 Apr 2026 19:15:30 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 55.615ms + - id: 4 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:30 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 19:20:30 GMT + Source-Age: + - "40" + 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: + - d2093ce6bbb4da8af2ac5e80db067ee8297209ac + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762130.450210,VS0,VE2 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.583208ms + - id: 5 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:30 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 19:20:30 GMT + Source-Age: + - "40" + 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: + - 0fb9f8117d92a0a013597e9b80e57b2edafb17f8 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762131.512497,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 15.075458ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -12,7 +9234,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","name":"rg-azdtest-da130ca","tags":{"DeleteAfter":"2025-12-10T20:19:33Z"}}' + body: '{"location":"eastus2","name":"rg-azdtest-d65c7c0","tags":{"DeleteAfter":"2026-04-09T20:15:29Z"}}' form: {} headers: Accept: @@ -26,8 +9248,8 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca?api-version=2021-04-01 + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin) + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -37,7 +9259,7 @@ interactions: trailer: {} content_length: 280 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca","name":"rg-azdtest-da130ca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2025-12-10T20:19:33Z"},"properties":{"provisioningState":"Succeeded"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0","name":"rg-azdtest-d65c7c0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2026-04-09T20:15:29Z"},"properties":{"provisioningState":"Succeeded"}}' headers: Cache-Control: - no-cache @@ -46,7 +9268,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:19:36 GMT + - Thu, 09 Apr 2026 19:15:31 GMT Expires: - "-1" Pragma: @@ -58,21 +9280,9243 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 979932d4-8c23-44a2-86ad-7f07737bc897 + - 556b09b5-cf9f-4361-815f-44d297f6806e X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 979932d4-8c23-44a2-86ad-7f07737bc897 + - 556b09b5-cf9f-4361-815f-44d297f6806e X-Ms-Routing-Request-Id: - - NORTHEUROPE:20251210T191937Z:979932d4-8c23-44a2-86ad-7f07737bc897 + - EASTUS2:20260409T191531Z:556b09b5-cf9f-4361-815f-44d297f6806e X-Msedge-Ref: - - 'Ref A: 839C4B8B5FEB4D3AAA5534F9B058846F Ref B: MWH011020808062 Ref C: 2025-12-10T19:19:34Z' + - 'Ref A: 97E3F134830746A9B8C06338358AB3A8 Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:15:31Z' status: 201 Created code: 201 - duration: 3.004743583s - - id: 1 + duration: 682.559916ms + - id: 7 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:31 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 19:20:31 GMT + Source-Age: + - "42" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - b5dc6906250ebc9df06c6819686aec60dbdaf24d + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762132.920370,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 16.504666ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 19:15:31 GMT + Expires: + - Thu, 09 Apr 2026 19:15:31 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: 14.513709ms + - id: 9 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:31 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 19:20:31 GMT + Source-Age: + - "42" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - b8c6a9ddc28d154919be349cc7a764bd71ae72f1 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762132.962343,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 17.430209ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 19:15:32 GMT + Expires: + - Thu, 09 Apr 2026 19:15:32 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 40.490584ms + - id: 11 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:32 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 19:20:32 GMT + Source-Age: + - "42" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 6c07a5cef9c42cd6cf60c4a994285cb2b7c26c4e + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762132.031939,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 13.249541ms + - id: 12 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:15:32 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 19:20:32 GMT + Source-Age: + - "42" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 0fdc1106db85a8431bee6e157b81ebfe75d1b01e + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760067-MIA + X-Timer: + - S1775762132.053372,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 16.234042ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -91,10 +18535,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca?api-version=2025-03-01 + - 3773d9febe541853ff048dde07fd1a91 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0?api-version=2025-03-01 method: HEAD response: proto: HTTP/2.0 @@ -111,7 +18555,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 10 Dec 2025 19:19:39 GMT + - Thu, 09 Apr 2026 19:15:33 GMT Expires: - "-1" Pragma: @@ -123,21 +18567,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 + - 3773d9febe541853ff048dde07fd1a91 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 49e17900-cf90-491a-93e7-3300a71eff6b + - 921736e1-d809-4336-9ac3-525c76942ca4 X-Ms-Routing-Request-Id: - - WESTUS2:20251210T191940Z:49e17900-cf90-491a-93e7-3300a71eff6b + - EASTUS2:20260409T191534Z:921736e1-d809-4336-9ac3-525c76942ca4 X-Msedge-Ref: - - 'Ref A: 31B29EA0C778486B807DCA1F7808B63F Ref B: MWH011020808062 Ref C: 2025-12-10T19:19:39Z' + - 'Ref A: 141C1703CA1B4B95947B140659BA6394 Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:15:34Z' status: 204 No Content code: 204 - duration: 499.227875ms - - id: 2 + duration: 70.99375ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -158,10 +18602,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 3773d9febe541853ff048dde07fd1a91 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -169,18 +18613,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:19:42 GMT + - Thu, 09 Apr 2026 19:15:35 GMT Expires: - "-1" Pragma: @@ -192,21 +18636,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 + - 3773d9febe541853ff048dde07fd1a91 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 08703e11-5065-4cbf-a6c9-b78e0977ca88 + - 67576dc5-99ed-41ef-b94d-21e23cb1c0b2 X-Ms-Routing-Request-Id: - - EASTUS2:20251210T191943Z:08703e11-5065-4cbf-a6c9-b78e0977ca88 + - EASTUS:20260409T191535Z:67576dc5-99ed-41ef-b94d-21e23cb1c0b2 X-Msedge-Ref: - - 'Ref A: B712F47B756847C2B47939198CB56B9B Ref B: MWH011020808062 Ref C: 2025-12-10T19:19:40Z' + - 'Ref A: A8E0326B0AD24C60840798C1DEB1021F Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:15:34Z' status: 200 OK code: 200 - duration: 2.767608667s - - id: 3 + duration: 1.385972458s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -227,10 +18671,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 3773d9febe541853ff048dde07fd1a91 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -249,7 +18693,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:19:43 GMT + - Thu, 09 Apr 2026 19:15:35 GMT Expires: - "-1" Pragma: @@ -261,21 +18705,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 + - 3773d9febe541853ff048dde07fd1a91 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b8125001-71e9-47b7-9018-7ac3a76fc308 + - f0b4734c-aacd-4de6-9cff-f39369640c90 X-Ms-Routing-Request-Id: - - WESTUS2:20251210T191943Z:b8125001-71e9-47b7-9018-7ac3a76fc308 + - EASTUS2:20260409T191535Z:f0b4734c-aacd-4de6-9cff-f39369640c90 X-Msedge-Ref: - - 'Ref A: FD6FFBA7203D47DBB2E59D5E9B40194D Ref B: MWH011020808062 Ref C: 2025-12-10T19:19:43Z' + - 'Ref A: 6E62FBE2EEEE46089811089150A9498E Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:15:35Z' status: 200 OK code: 200 - duration: 285.201667ms - - id: 4 + duration: 67.525416ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -286,7 +18730,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-da130ca","reference":null},"location":{"value":"eastus2","reference":null}},"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":"10302170942741180062"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-da130ca","azd-layer-name":"","azd-provision-param-hash":"58e9e08f18bc92730ebdc72b7b8a7a8d0961e06b3fc49d12a5d672ef319d5fa3"}}' + body: '{"properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d65c7c0","reference":null},"location":{"value":"eastus2","reference":null}},"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":"18238344461959563427"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-d65c7c0","azd-layer-name":"","azd-provision-param-hash":"63900d5ab23f1858d31cccb851d219f7b5c85d6d442872797be3630d25c0cd1e"}}' form: {} headers: Accept: @@ -300,10 +18744,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372/validate?api-version=2021-04-01 + - 3773d9febe541853ff048dde07fd1a91 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128/validate?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -313,7 +18757,7 @@ interactions: trailer: {} content_length: 1059 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372","name":"azdtest-da130ca-1765394372","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-da130ca","azd-layer-name":"","azd-provision-param-hash":"58e9e08f18bc92730ebdc72b7b8a7a8d0961e06b3fc49d12a5d672ef319d5fa3"},"properties":{"templateHash":"10302170942741180062","parameters":{"environmentName":{"type":"String","value":"azdtest-da130ca"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-10T19:19:44.1395015Z","duration":"PT0S","correlationId":"ebbe9cdc581d60765bd4759296c5df36","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Storage/storageAccounts/staeiwqvztwwies"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128","name":"azdtest-d65c7c0-1775762128","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-d65c7c0","azd-layer-name":"","azd-provision-param-hash":"63900d5ab23f1858d31cccb851d219f7b5c85d6d442872797be3630d25c0cd1e"},"properties":{"templateHash":"18238344461959563427","parameters":{"environmentName":{"type":"String","value":"azdtest-d65c7c0"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:15:37.5632424Z","duration":"PT0S","correlationId":"3773d9febe541853ff048dde07fd1a91","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Storage/storageAccounts/stue5q5duuc4yby"}]}}' headers: Cache-Control: - no-cache @@ -322,7 +18766,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:19:44 GMT + - Thu, 09 Apr 2026 19:15:37 GMT Expires: - "-1" Pragma: @@ -334,21 +18778,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 + - 3773d9febe541853ff048dde07fd1a91 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 59ddce13-217a-4997-8871-39c25dec76e8 + - cd54ff51-6e92-4251-bd6a-6ebe4199a737 X-Ms-Routing-Request-Id: - - EASTUS2:20251210T191944Z:59ddce13-217a-4997-8871-39c25dec76e8 + - EASTUS2:20260409T191538Z:cd54ff51-6e92-4251-bd6a-6ebe4199a737 X-Msedge-Ref: - - 'Ref A: BA1BC36819F6475B957DBFF4D19FAD56 Ref B: MWH011020808062 Ref C: 2025-12-10T19:19:43Z' + - 'Ref A: 2C79C374C55F4E439CD032B64CD7AB48 Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:15:37Z' status: 200 OK code: 200 - duration: 1.345754541s - - id: 5 + duration: 865.2395ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -359,7 +18803,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-da130ca","reference":null},"location":{"value":"eastus2","reference":null}},"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":"10302170942741180062"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-da130ca","azd-layer-name":"","azd-provision-param-hash":"58e9e08f18bc92730ebdc72b7b8a7a8d0961e06b3fc49d12a5d672ef319d5fa3"}}' + body: '{"properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d65c7c0","reference":null},"location":{"value":"eastus2","reference":null}},"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":"18238344461959563427"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-d65c7c0","azd-layer-name":"","azd-provision-param-hash":"63900d5ab23f1858d31cccb851d219f7b5c85d6d442872797be3630d25c0cd1e"}}' form: {} headers: Accept: @@ -373,10 +18817,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372?api-version=2021-04-01 + - 3773d9febe541853ff048dde07fd1a91 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -384,20 +18828,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 887 + content_length: 888 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372","name":"azdtest-da130ca-1765394372","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-da130ca","azd-layer-name":"","azd-provision-param-hash":"58e9e08f18bc92730ebdc72b7b8a7a8d0961e06b3fc49d12a5d672ef319d5fa3"},"properties":{"templateHash":"10302170942741180062","parameters":{"environmentName":{"type":"String","value":"azdtest-da130ca"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-10T19:19:45.3354369Z","duration":"PT0.000337S","correlationId":"ebbe9cdc581d60765bd4759296c5df36","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128","name":"azdtest-d65c7c0-1775762128","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-d65c7c0","azd-layer-name":"","azd-provision-param-hash":"63900d5ab23f1858d31cccb851d219f7b5c85d6d442872797be3630d25c0cd1e"},"properties":{"templateHash":"18238344461959563427","parameters":{"environmentName":{"type":"String","value":"azdtest-d65c7c0"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T19:15:38.4398241Z","duration":"PT0.0006313S","correlationId":"3773d9febe541853ff048dde07fd1a91","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372/operationStatuses/08584362125001336207?api-version=2021-04-01&t=639009911861791819&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=nj-Zv4d7tKpiEcd706Kyu1OChg3SMz0J2py51QPf2aq4evpAvML6N8cq87r6hJ3et_sbzZZ8ANHwTx9tPxA46jdoLd_PXFMX3mBvXbowu6D8bVCoggE8X1iNniFNUHGVhgs7ue_M_z3uFyHb7iyOCJ-dNsxfcUDfqtm9EAnLHdCsR-631aHGJKQCA0lrCHN24DslEmnm-5cxEKIRsgAAwAZr37-PhPcHoD54VUgkrQN8S8kzJGw6Ls-gYU5yHcB-aicgMCWJHY57r29w9Qa1PYP6bhGqkbgWuBAFK-1qELHlov_yrJXFO0bQPPvtGq73P1ynIC8eBu2wZfn2q8fItg&h=SVrh8CrTS-C6KPLlxnuY-X4peZjz-afpq5cqAuRiyHQ + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128/operationStatuses/08584258447470300259?api-version=2021-04-01&t=639113589387835747&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=eiYWPsElGKkQdzgvhLcOkE8sP3CjbdYAvEu-xZO2Y1EsTCYtKvGa7GdP1xXWLujX5qmtMSdnas0fogvrbIzAWKIE6js2xPQpFEoIeRAhWZrGtE_taGccicTt-_vNpo-mcmMpgfuC0c3pT6x9UR2AN4jAFPemG3RL2me_9CDaccN1YDt2RNQMIJmAY7FldtSqP8mXHf6tairBJkrwO2Y9CX0ID3llXkgDV_D-YaCB-XGZ2H4-og3V52SlWit2KE8lOfOh-7o2Op4lYHPZDXSM9jMCz2l14me8AwqLOeyVNU_soqjiF6CoGP9rrqAeohW3bMkfAOsv_DNC3h__9wFDCg&h=t4NpS51--iNYY6ZvkREGvpDKaVIsVWKmoyFJi7ZAgKE Cache-Control: - no-cache Content-Length: - - "887" + - "888" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:19:45 GMT + - Thu, 09 Apr 2026 19:15:38 GMT Expires: - "-1" Pragma: @@ -409,23 +18853,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 + - 3773d9febe541853ff048dde07fd1a91 X-Ms-Deployment-Engine-Version: - - 1.533.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - bf6d9539-3e56-44fb-aa4d-d243a718fc08 + - cffd1702-ab94-489f-a6b2-628cb90f90e7 X-Ms-Routing-Request-Id: - - EASTUS2:20251210T191946Z:bf6d9539-3e56-44fb-aa4d-d243a718fc08 + - EASTUS2:20260409T191538Z:cffd1702-ab94-489f-a6b2-628cb90f90e7 X-Msedge-Ref: - - 'Ref A: E3216EE0CC9E439DA110ABB372457136 Ref B: MWH011020808062 Ref C: 2025-12-10T19:19:44Z' + - 'Ref A: 29CEFCF39FE44C8E8A4031A7F7025CFC Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:15:38Z' status: 201 Created code: 201 - duration: 1.30668975s - - id: 6 + duration: 645.814458ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -444,10 +18888,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372/operationStatuses/08584362125001336207?api-version=2021-04-01&t=639009911861791819&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=nj-Zv4d7tKpiEcd706Kyu1OChg3SMz0J2py51QPf2aq4evpAvML6N8cq87r6hJ3et_sbzZZ8ANHwTx9tPxA46jdoLd_PXFMX3mBvXbowu6D8bVCoggE8X1iNniFNUHGVhgs7ue_M_z3uFyHb7iyOCJ-dNsxfcUDfqtm9EAnLHdCsR-631aHGJKQCA0lrCHN24DslEmnm-5cxEKIRsgAAwAZr37-PhPcHoD54VUgkrQN8S8kzJGw6Ls-gYU5yHcB-aicgMCWJHY57r29w9Qa1PYP6bhGqkbgWuBAFK-1qELHlov_yrJXFO0bQPPvtGq73P1ynIC8eBu2wZfn2q8fItg&h=SVrh8CrTS-C6KPLlxnuY-X4peZjz-afpq5cqAuRiyHQ + - 3773d9febe541853ff048dde07fd1a91 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128/operationStatuses/08584258447470300259?api-version=2021-04-01&t=639113589387835747&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=eiYWPsElGKkQdzgvhLcOkE8sP3CjbdYAvEu-xZO2Y1EsTCYtKvGa7GdP1xXWLujX5qmtMSdnas0fogvrbIzAWKIE6js2xPQpFEoIeRAhWZrGtE_taGccicTt-_vNpo-mcmMpgfuC0c3pT6x9UR2AN4jAFPemG3RL2me_9CDaccN1YDt2RNQMIJmAY7FldtSqP8mXHf6tairBJkrwO2Y9CX0ID3llXkgDV_D-YaCB-XGZ2H4-og3V52SlWit2KE8lOfOh-7o2Op4lYHPZDXSM9jMCz2l14me8AwqLOeyVNU_soqjiF6CoGP9rrqAeohW3bMkfAOsv_DNC3h__9wFDCg&h=t4NpS51--iNYY6ZvkREGvpDKaVIsVWKmoyFJi7ZAgKE method: GET response: proto: HTTP/2.0 @@ -466,7 +18910,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:20:16 GMT + - Thu, 09 Apr 2026 19:16:08 GMT Expires: - "-1" Pragma: @@ -478,21 +18922,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 + - 3773d9febe541853ff048dde07fd1a91 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 459e3ec6-f0d9-4343-9671-1ea1164a9a60 + - 6a96f8ce-8cd7-44d5-8ae8-4bc983cba114 X-Ms-Routing-Request-Id: - - EASTUS2:20251210T192016Z:459e3ec6-f0d9-4343-9671-1ea1164a9a60 + - EASTUS2:20260409T191609Z:6a96f8ce-8cd7-44d5-8ae8-4bc983cba114 X-Msedge-Ref: - - 'Ref A: 3DF1611B37B64DC79F5460CAD876FF61 Ref B: MWH011020808062 Ref C: 2025-12-10T19:20:16Z' + - 'Ref A: 1CEBB03B154C417797F27FA280ED151B Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:16:08Z' status: 200 OK code: 200 - duration: 160.841834ms - - id: 7 + duration: 238.584375ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -511,10 +18955,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372?api-version=2021-04-01 + - 3773d9febe541853ff048dde07fd1a91 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -522,18 +18966,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1338 + content_length: 1339 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372","name":"azdtest-da130ca-1765394372","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-da130ca","azd-layer-name":"","azd-provision-param-hash":"58e9e08f18bc92730ebdc72b7b8a7a8d0961e06b3fc49d12a5d672ef319d5fa3"},"properties":{"templateHash":"10302170942741180062","parameters":{"environmentName":{"type":"String","value":"azdtest-da130ca"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-10T19:20:08.9028589Z","duration":"PT23.567422S","correlationId":"ebbe9cdc581d60765bd4759296c5df36","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Storage/storageAccounts/staeiwqvztwwies"},"storagE_ACCOUNT_NAME":{"type":"String","value":"staeiwqvztwwies"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Storage/storageAccounts/staeiwqvztwwies"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128","name":"azdtest-d65c7c0-1775762128","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-d65c7c0","azd-layer-name":"","azd-provision-param-hash":"63900d5ab23f1858d31cccb851d219f7b5c85d6d442872797be3630d25c0cd1e"},"properties":{"templateHash":"18238344461959563427","parameters":{"environmentName":{"type":"String","value":"azdtest-d65c7c0"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:15:59.2303323Z","duration":"PT20.7905082S","correlationId":"3773d9febe541853ff048dde07fd1a91","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Storage/storageAccounts/stue5q5duuc4yby"},"storagE_ACCOUNT_NAME":{"type":"String","value":"stue5q5duuc4yby"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Storage/storageAccounts/stue5q5duuc4yby"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1338" + - "1339" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:20:16 GMT + - Thu, 09 Apr 2026 19:16:08 GMT Expires: - "-1" Pragma: @@ -545,21 +18989,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ebbe9cdc581d60765bd4759296c5df36 + - 3773d9febe541853ff048dde07fd1a91 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 78402701-49a9-4f23-bdc6-94d798667201 + - 9f3e6b44-7dc7-4ef2-9782-03e59f259838 X-Ms-Routing-Request-Id: - - EASTUS2:20251210T192016Z:78402701-49a9-4f23-bdc6-94d798667201 + - EASTUS2:20260409T191609Z:9f3e6b44-7dc7-4ef2-9782-03e59f259838 X-Msedge-Ref: - - 'Ref A: 692D5BF360CD47E6A2D844AA42A89778 Ref B: MWH011020808062 Ref C: 2025-12-10T19:20:16Z' + - 'Ref A: D5EA35BBCE734B71A53CA09C8E7B4207 Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:16:09Z' status: 200 OK code: 200 - duration: 325.20125ms - - id: 8 + duration: 113.691041ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -580,10 +19024,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 4cf071b35493413c0ff2dfe2cf990669 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -591,18 +19035,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1350 + content_length: 1351 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Resources/deployments/azdtest-da130ca-1765394372","name":"azdtest-da130ca-1765394372","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-da130ca","azd-layer-name":"","azd-provision-param-hash":"58e9e08f18bc92730ebdc72b7b8a7a8d0961e06b3fc49d12a5d672ef319d5fa3"},"properties":{"templateHash":"10302170942741180062","parameters":{"environmentName":{"type":"String","value":"azdtest-da130ca"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-10T19:20:08.9028589Z","duration":"PT23.567422S","correlationId":"ebbe9cdc581d60765bd4759296c5df36","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Storage/storageAccounts/staeiwqvztwwies"},"storagE_ACCOUNT_NAME":{"type":"String","value":"staeiwqvztwwies"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Storage/storageAccounts/staeiwqvztwwies"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Resources/deployments/azdtest-d65c7c0-1775762128","name":"azdtest-d65c7c0-1775762128","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-d65c7c0","azd-layer-name":"","azd-provision-param-hash":"63900d5ab23f1858d31cccb851d219f7b5c85d6d442872797be3630d25c0cd1e"},"properties":{"templateHash":"18238344461959563427","parameters":{"environmentName":{"type":"String","value":"azdtest-d65c7c0"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:15:59.2303323Z","duration":"PT20.7905082S","correlationId":"3773d9febe541853ff048dde07fd1a91","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Storage/storageAccounts/stue5q5duuc4yby"},"storagE_ACCOUNT_NAME":{"type":"String","value":"stue5q5duuc4yby"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Storage/storageAccounts/stue5q5duuc4yby"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1350" + - "1351" Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:20:18 GMT + - Thu, 09 Apr 2026 19:16:10 GMT Expires: - "-1" Pragma: @@ -614,21 +19058,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 + - 4cf071b35493413c0ff2dfe2cf990669 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9d11ce10-e769-466b-b235-c467383ad415 + - ba2e3ce2-58b6-4706-8bf7-122d58aae39b X-Ms-Routing-Request-Id: - - WESTUS2:20251210T192019Z:9d11ce10-e769-466b-b235-c467383ad415 + - EASTUS2:20260409T191611Z:ba2e3ce2-58b6-4706-8bf7-122d58aae39b X-Msedge-Ref: - - 'Ref A: D5C99EC06C844F32A949A523A720CBE3 Ref B: MWH011020808062 Ref C: 2025-12-10T19:20:19Z' + - 'Ref A: 6C6BBD8A2E8C44029A50E4494A6E0350 Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:16:10Z' status: 200 OK code: 200 - duration: 407.016667ms - - id: 9 + duration: 154.28925ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -649,10 +19093,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/resources?api-version=2021-04-01 + - 4cf071b35493413c0ff2dfe2cf990669 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -662,7 +19106,7 @@ interactions: trailer: {} content_length: 332 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da130ca/providers/Microsoft.Storage/storageAccounts/staeiwqvztwwies","name":"staeiwqvztwwies","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d65c7c0/providers/Microsoft.Storage/storageAccounts/stue5q5duuc4yby","name":"stue5q5duuc4yby","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{}}]}' headers: Cache-Control: - no-cache @@ -671,7 +19115,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 10 Dec 2025 19:20:19 GMT + - Thu, 09 Apr 2026 19:16:10 GMT Expires: - "-1" Pragma: @@ -683,21 +19127,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 + - 4cf071b35493413c0ff2dfe2cf990669 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5dcc9025-4ae3-4dc2-910a-00404dc75d68 + - 969ba419-ac3f-4cc5-8d72-9d013f0de40d X-Ms-Routing-Request-Id: - - EASTUS2:20251210T192019Z:5dcc9025-4ae3-4dc2-910a-00404dc75d68 + - EASTUS2:20260409T191611Z:969ba419-ac3f-4cc5-8d72-9d013f0de40d X-Msedge-Ref: - - 'Ref A: 40E617CF09414CE8AD9A755A3B21095E Ref B: MWH011020808062 Ref C: 2025-12-10T19:20:19Z' + - 'Ref A: DFA208198545437A99E1085C324FC46B Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:16:11Z' status: 200 OK code: 200 - duration: 173.907084ms - - id: 10 + duration: 105.641083ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -718,10 +19162,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-da130ca?api-version=2021-04-01 + - 4cf071b35493413c0ff2dfe2cf990669 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d65c7c0?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -738,11 +19182,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 10 Dec 2025 19:20:19 GMT + - Thu, 09 Apr 2026 19:16:10 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQTEzMENBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639009912666215698&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=v0mW4cuUannvegW1c8W2hvGqBX9kMyrVNBGE_IUNzYQlof92rxMLOtNQulsmrWIDv_mrlJjycZMvLrxL0yppVJ-G9-dgyX2wyq77gC3ueUywymDErjbOzLXBA0mLE_VqvFbrWZ1kSR3tAQ2XTU7pk6ahwG8SH_5ADKXb2dIo6vlCFIxZnlGKe9HRXlTOxJWtUv4BqfDVVDZUR2nziElg4iaCEOd_ZZv4pW-DmdWWjd4xLj8J_-ji8tkJjgwXD5xeFyF6Y66cH_P1ahwbTzdpV0g2rktlcj9Bb_J1u3uk92ZMkDvZObklVgcJLHCusy4KHSq1ePoEV8oKNPamngysNA&h=5CXxcGNHjJj8mpWXpk8qjgtZbRkzy_SATz5jKs3sV1E + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRENjVDN0MwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113590319445390&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=H9E_JWVCePX2wsOz4yX45ykrJymOZZapKpHMAd5skZx6Afa2tsvparsH8Y4hy9faD38-WKhMwbzO-NZwZn9uDSRTz9eWpZuoBDcT7q56w3rXlsfa1bP44TZJ5IxP4MKKh_OECk7FLZqXY7RYRfRLDiO6Y3CYqKZE17mIjdEIo29q_kWxbUZwj1Nbl1nFobcfpPlTZ2fnE9NGGFD_2Nbea03v7QjX0Xne7vDdIp-EyDNZvnQhHBZYLB2myyreunJEL9HQPQRDPS-BRyA8SMjQ7m21Mm_WAHgM-NOUQTAbHI_6Y1sAnCXpMzvb6C4CMQOv5ThXS2ZMw0WKlyCtoBFxIA&h=TQunn511dJEzsj_9OHeHchjuhDoIQX6q_I3HDTD3LKc Pragma: - no-cache Retry-After: @@ -754,21 +19198,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 + - 4cf071b35493413c0ff2dfe2cf990669 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - de46210e-b188-4029-af92-8b45a131a673 + - a403ca8a-98ab-40fc-b7ee-78abd04dabf0 X-Ms-Routing-Request-Id: - - EASTUS2:20251210T192019Z:de46210e-b188-4029-af92-8b45a131a673 + - EASTUS2:20260409T191611Z:a403ca8a-98ab-40fc-b7ee-78abd04dabf0 X-Msedge-Ref: - - 'Ref A: 25B45F1D94804D90BAD2808B6F979294 Ref B: MWH011020808062 Ref C: 2025-12-10T19:20:19Z' + - 'Ref A: 4155CB85FDF24F8F950F47DFD9670D3F Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:16:11Z' status: 202 Accepted code: 202 - duration: 618.24ms - - id: 11 + duration: 170.237875ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -787,10 +19231,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.1; darwin),azdev/0.0.0-dev.0 (Go go1.25.1; darwin/arm64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkREQTEzMENBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639009912666215698&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=v0mW4cuUannvegW1c8W2hvGqBX9kMyrVNBGE_IUNzYQlof92rxMLOtNQulsmrWIDv_mrlJjycZMvLrxL0yppVJ-G9-dgyX2wyq77gC3ueUywymDErjbOzLXBA0mLE_VqvFbrWZ1kSR3tAQ2XTU7pk6ahwG8SH_5ADKXb2dIo6vlCFIxZnlGKe9HRXlTOxJWtUv4BqfDVVDZUR2nziElg4iaCEOd_ZZv4pW-DmdWWjd4xLj8J_-ji8tkJjgwXD5xeFyF6Y66cH_P1ahwbTzdpV0g2rktlcj9Bb_J1u3uk92ZMkDvZObklVgcJLHCusy4KHSq1ePoEV8oKNPamngysNA&h=5CXxcGNHjJj8mpWXpk8qjgtZbRkzy_SATz5jKs3sV1E + - 4cf071b35493413c0ff2dfe2cf990669 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRENjVDN0MwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113590319445390&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=H9E_JWVCePX2wsOz4yX45ykrJymOZZapKpHMAd5skZx6Afa2tsvparsH8Y4hy9faD38-WKhMwbzO-NZwZn9uDSRTz9eWpZuoBDcT7q56w3rXlsfa1bP44TZJ5IxP4MKKh_OECk7FLZqXY7RYRfRLDiO6Y3CYqKZE17mIjdEIo29q_kWxbUZwj1Nbl1nFobcfpPlTZ2fnE9NGGFD_2Nbea03v7QjX0Xne7vDdIp-EyDNZvnQhHBZYLB2myyreunJEL9HQPQRDPS-BRyA8SMjQ7m21Mm_WAHgM-NOUQTAbHI_6Y1sAnCXpMzvb6C4CMQOv5ThXS2ZMw0WKlyCtoBFxIA&h=TQunn511dJEzsj_9OHeHchjuhDoIQX6q_I3HDTD3LKc method: GET response: proto: HTTP/2.0 @@ -807,7 +19251,7 @@ interactions: Content-Length: - "0" Date: - - Wed, 10 Dec 2025 19:21:21 GMT + - Thu, 09 Apr 2026 19:17:26 GMT Expires: - "-1" Pragma: @@ -819,21 +19263,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 89628ef3d112c3c01aa2f0af070c0f45 + - 4cf071b35493413c0ff2dfe2cf990669 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c7a9caf6-2d3e-4ad4-a2d3-efe38ede5678 + - d1a5893d-206b-4c54-8f33-bb1890ef62f6 X-Ms-Routing-Request-Id: - - WESTUS2:20251210T192122Z:c7a9caf6-2d3e-4ad4-a2d3-efe38ede5678 + - EASTUS2:20260409T191727Z:d1a5893d-206b-4c54-8f33-bb1890ef62f6 X-Msedge-Ref: - - 'Ref A: 7E660D3730D441968A5D9370B7CC3EC6 Ref B: MWH011020808062 Ref C: 2025-12-10T19:21:21Z' + - 'Ref A: 3FED5E26943641F0A79390C1AEF6029A Ref B: BN1AA2051014011 Ref C: 2026-04-09T19:17:27Z' status: 200 OK code: 200 - duration: 470.411542ms + duration: 63.723791ms --- -env_name: azdtest-da130ca -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1765394372" +env_name: azdtest-d65c7c0 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775762128" diff --git a/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/ResourceGroup_Scope_Up_Down.yaml b/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/ResourceGroup_Scope_Up_Down.yaml index 5436512156b..b146328e094 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/ResourceGroup_Scope_Up_Down.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/ResourceGroup_Scope_Up_Down.yaml @@ -2,6 +2,9228 @@ version: 2 interactions: - id: 0 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:14:45 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 18:19:45 GMT + Source-Age: + - "46" + 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: + - 39767b55a6cccc20fea5c89e658caa9002e4f288 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760089-MIA + X-Timer: + - S1775758486.825679,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 76.068ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 18:14:46 GMT + Expires: + - Thu, 09 Apr 2026 18:14:46 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: 198.269583ms + - id: 2 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:14:46 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 18:19:46 GMT + Source-Age: + - "46" + 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: + - 40cc5c6da77a8db6aa0dad4a85c425bc66f9384e + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760089-MIA + X-Timer: + - S1775758486.060943,VS0,VE3 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 26.965709ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 18:14:46 GMT + Expires: + - Thu, 09 Apr 2026 18:14:46 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 30.986833ms + - id: 4 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:14:46 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 18:19:46 GMT + Source-Age: + - "46" + 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: + - 944d6987fd912f7f6c8816c150ddb155769024dd + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760089-MIA + X-Timer: + - S1775758486.134025,VS0,VE3 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 19.555209ms + - id: 5 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:14:46 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 18:19:46 GMT + Source-Age: + - "46" + 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: + - b148fbb2600f5b8d3e207d0dd0adfa411b4fadb0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760089-MIA + X-Timer: + - S1775758486.160604,VS0,VE4 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 23.768458ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -12,7 +9234,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","name":"rg-azdtest-w988f28","tags":{"DeleteAfter":"2026-01-05T23:32:35Z"}}' + body: '{"location":"eastus2","name":"rg-azdtest-d7ffc20","tags":{"DeleteAfter":"2026-04-09T19:14:45Z"}}' form: {} headers: Accept: @@ -26,8 +9248,8 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w988f28?api-version=2021-04-01 + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin) + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-d7ffc20?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -37,7 +9259,7 @@ interactions: trailer: {} content_length: 280 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28","name":"rg-azdtest-w988f28","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2026-01-05T23:32:35Z"},"properties":{"provisioningState":"Succeeded"}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20","name":"rg-azdtest-d7ffc20","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2026-04-09T19:14:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: Cache-Control: - no-cache @@ -46,7 +9268,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:32:45 GMT + - Thu, 09 Apr 2026 18:14:46 GMT Expires: - "-1" Pragma: @@ -58,21 +9280,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0b040c92-0ff3-4f58-bf10-6af54a024d1e + - 7347d6aa-a390-401a-8f5b-e9bf7066809c X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 0b040c92-0ff3-4f58-bf10-6af54a024d1e + - 7347d6aa-a390-401a-8f5b-e9bf7066809c X-Ms-Routing-Request-Id: - - EASTASIA:20260105T223246Z:0b040c92-0ff3-4f58-bf10-6af54a024d1e + - EASTUS:20260409T181447Z:7347d6aa-a390-401a-8f5b-e9bf7066809c X-Msedge-Ref: - - 'Ref A: B0AD75FC65704AD399CDAE03BC854CF3 Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:32:42Z' + - 'Ref A: A4169ABA2591451C8677E3614319EC70 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:14:46Z' status: 201 Created code: 201 - duration: 3.8230449s - - id: 1 + duration: 564.222ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -91,10 +9313,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28?api-version=2025-03-01 + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20?api-version=2025-03-01 method: HEAD response: proto: HTTP/2.0 @@ -111,7 +9333,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 05 Jan 2026 22:32:50 GMT + - Thu, 09 Apr 2026 18:14:48 GMT Expires: - "-1" Pragma: @@ -123,21 +9345,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 68ff57c3-d893-4d04-80fa-e06efeae6b5d + - 3e7c903e-cd64-4a6d-a56f-3fca53676229 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223251Z:68ff57c3-d893-4d04-80fa-e06efeae6b5d + - EASTUS2:20260409T181449Z:3e7c903e-cd64-4a6d-a56f-3fca53676229 X-Msedge-Ref: - - 'Ref A: 6DEC6750386942759303B46306FEBD7F Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:32:50Z' + - 'Ref A: AFF13DEC8E5140ED85F2DD15B814D8E3 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:14:49Z' status: 204 No Content code: 204 - duration: 206.0539ms - - id: 2 + duration: 84.7965ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -158,10 +9380,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -169,18 +9391,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:32:52 GMT + - Thu, 09 Apr 2026 18:14:49 GMT Expires: - "-1" Pragma: @@ -192,21 +9414,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0f809d6d-0914-404c-9184-abbc058dec35 + - b034ee07-7620-4024-8625-2cab67852dbb X-Ms-Routing-Request-Id: - - EASTUS2:20260105T223253Z:0f809d6d-0914-404c-9184-abbc058dec35 + - EASTUS:20260409T181450Z:b034ee07-7620-4024-8625-2cab67852dbb X-Msedge-Ref: - - 'Ref A: 1635EBC6A308445C9967FDFCAD88A11A Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:32:51Z' + - 'Ref A: B68594E10D2C423D9F83CFF28BA53E1A Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:14:49Z' status: 200 OK code: 200 - duration: 2.4650908s - - id: 3 + duration: 896.805709ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -227,10 +9449,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -249,7 +9471,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:32:53 GMT + - Thu, 09 Apr 2026 18:14:49 GMT Expires: - "-1" Pragma: @@ -261,25 +9483,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/949010a4-64b7-4c14-9e74-c0ca24c9a179 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/1b723626-770e-4416-85f0-0809467506c8 X-Ms-Original-Request-Ids: - - 57ac0ab2-81ce-4664-a372-01e5c216f24d + - 85ebd212-0e80-4399-8964-519a71af8200 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a95a5445-c204-4397-bc84-b5b6cedf1d1b + - 34cdfe55-4318-49ae-a847-4c1b65e80b42 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223254Z:a95a5445-c204-4397-bc84-b5b6cedf1d1b + - EASTUS2:20260409T181450Z:34cdfe55-4318-49ae-a847-4c1b65e80b42 X-Msedge-Ref: - - 'Ref A: C5E103EAA1904D219F30A0B9B534388C Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:32:53Z' + - 'Ref A: CEA72ECA5DAB4B17B0813D0B7E4FD07F Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:14:50Z' status: 200 OK code: 200 - duration: 352.4278ms - - id: 4 + duration: 99.753083ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -290,7 +9512,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$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":"10302170942741180062"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}' + body: '{"$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":"18238344461959563427"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}' form: {} headers: Accept: @@ -304,9 +9526,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -317,7 +9539,7 @@ interactions: trailer: {} content_length: 1403 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2019-04-01/DEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"DEFAULTVALUE\":\"[RESOURCEGROUP().LOCATION]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}}},\"VARIABLES\":{\"RESOURCETOKEN\":\"[TOLOWER(UNIQUESTRING(RESOURCEGROUP().ID, PARAMETERS(''ENVIRONMENTNAME''), PARAMETERS(''LOCATION'')))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"KIND\":\"STORAGEV2\",\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"10302170942741180062\"}}}","templateHash":"10302170942741180062"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2019-04-01/DEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"DEFAULTVALUE\":\"[RESOURCEGROUP().LOCATION]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}}},\"VARIABLES\":{\"RESOURCETOKEN\":\"[TOLOWER(UNIQUESTRING(RESOURCEGROUP().ID, PARAMETERS(''ENVIRONMENTNAME''), PARAMETERS(''LOCATION'')))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"KIND\":\"STORAGEV2\",\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"18238344461959563427\"}}}","templateHash":"18238344461959563427"}' headers: Cache-Control: - no-cache @@ -326,7 +9548,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:32:53 GMT + - Thu, 09 Apr 2026 18:14:51 GMT Expires: - "-1" Pragma: @@ -338,19 +9560,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - b45d5b42-e5e7-4e40-b26f-0e5b9a881770 + - 9650656b-4266-44e6-b5a2-3251e04439ac X-Ms-Routing-Request-Id: - - EASTUS2:20260105T223254Z:b45d5b42-e5e7-4e40-b26f-0e5b9a881770 + - EASTUS2:20260409T181451Z:9650656b-4266-44e6-b5a2-3251e04439ac X-Msedge-Ref: - - 'Ref A: C8033C4AE6694F3C82B2D06A3E407CA0 Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:32:54Z' + - 'Ref A: 01AA0D777A8748E79B2BD95933181A25 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:14:51Z' status: 200 OK code: 200 - duration: 100.578ms - - id: 5 + duration: 101.786958ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -361,7 +9583,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"environmentName":{"value":"azdtest-w988f28"},"location":{"value":"eastus2"}},"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":"10302170942741180062"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-w988f28","azd-layer-name":"","azd-provision-param-hash":"61f67913fba7d88fbafa0cc4c7dd62cad845ed15a17f9a5188ad34c9dbef748f","azd-provision-template-hash":"10302170942741180062"}}' + body: '{"properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"environmentName":{"value":"azdtest-d7ffc20"},"location":{"value":"eastus2"}},"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":"18238344461959563427"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-d7ffc20","azd-layer-name":"","azd-provision-param-hash":"8595ae8b3f0b4a243191e304ee00dbadc09bd4e5236aa26ac87b890ccb8b1f9f","azd-provision-template-hash":"18238344461959563427"}}' form: {} headers: Accept: @@ -375,10 +9597,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28/validate?api-version=2024-03-01 + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20/validate?api-version=2024-03-01 method: POST response: proto: HTTP/2.0 @@ -395,11 +9617,11 @@ interactions: Content-Length: - "0" Date: - - Mon, 05 Jan 2026 22:32:54 GMT + - Thu, 09 Apr 2026 18:14:51 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOjdiZjM5Yjk0OjJEOTQ4NToyRDRhODQ6MkRiMDgyOjJENzQwZjM4YTBjNzMwIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639032491750333244&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=PlPRSP3OPqJLPjapFUU9xbgI57yiwOKRhTqd_pWB6gs2A1oqC94d_1yKi0yJsxQpgD3S_aYiA6q_NvMiAuKN4LHZqRoZhMru5UgOEraOJ-ZVzqlStucnGwbMAREkgtA5CMPE34JlRkp4utZnwNiNLyMlSg3-fL7sJGiYp0jZOwJH8oVzkV-BuPJCVODZNlPwqJnYF7VwJU9J2CLVbubn924fxQ71e0ma7ws0v8i4DxUxEYdFGcUjYGIyD3PiAMxM03xcvWC098XjugLY9bY45wZU3j8gH5TOD9wgr4r988DyZof2dnhKqxiXCfW5rM93j1i1QwJEo3MfnBcy5yd5yA&h=t5E8cmxqpPEV74FY4X6xZWjhHdpYYjXRHmxTSIEsy3Y + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOmVhN2M2ZWVhOjJENjkxZDoyRDQzM2I6MkQ4ODFkOjJEYTkxMDQ1M2Q4ZjE4Iiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639113552921980715&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=O2XIcypuzXlf8shEmvdOJ2HCV3PPXEizWIGiC2rnkqibxeNjGVEUh__KNqs_fQuY8DfUM-GSjjpvJMHgPTENgL2gGUma4xfx__G_0k9g3yr5WhyJ9MXb_GiMIEYdzSVuE6xdxICXRpqJRLIZyCd7R1EJo_tWRYU609wCs4aW0xj1yQrt56EDT3kN6RQClfsIZL1OiDeXTYPEcOXrjnM33Pi7iJO5OvPb40PHo9B6CDuIPt-sIS0y2C2_Ep7Fk8SClw1e8BjuHvBhiMWSohO4JxAz5Ip6-ncHVZbiwXAiH0l16hsyvGqipJIW35iJi6Epoiro1d0kaut1PqLndz8VrA&h=7nkIUw0Rpnx5EGQgHZHA7APJ19cd19D-qY9BWJtG3XU Pragma: - no-cache Retry-After: @@ -411,23 +9633,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/97cd724c-65c3-4390-b36e-9038aba267ee + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/33358095-d882-4778-baf6-b4149fedcb9b X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 066becb0-6e63-42e7-a6d8-5ba7861c113f + - ea7101bb-06b8-4a2d-b96a-9a0685611c0e X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223255Z:89b61c23-f10a-47f2-820b-3ac0dd8d6b02 + - EASTUS2:20260409T181452Z:8f964d4f-10e3-40fd-bda3-9284926a2a4b X-Msedge-Ref: - - 'Ref A: FEF9FE53400D49768F12B41C06E4275B Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:32:54Z' + - 'Ref A: 319CC2792BA849E2A09286608B4D8447 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:14:52Z' status: 202 Accepted code: 202 - duration: 848.0554ms - - id: 6 + duration: 214.579292ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -446,10 +9668,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOjdiZjM5Yjk0OjJEOTQ4NToyRDRhODQ6MkRiMDgyOjJENzQwZjM4YTBjNzMwIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639032491750333244&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=PlPRSP3OPqJLPjapFUU9xbgI57yiwOKRhTqd_pWB6gs2A1oqC94d_1yKi0yJsxQpgD3S_aYiA6q_NvMiAuKN4LHZqRoZhMru5UgOEraOJ-ZVzqlStucnGwbMAREkgtA5CMPE34JlRkp4utZnwNiNLyMlSg3-fL7sJGiYp0jZOwJH8oVzkV-BuPJCVODZNlPwqJnYF7VwJU9J2CLVbubn924fxQ71e0ma7ws0v8i4DxUxEYdFGcUjYGIyD3PiAMxM03xcvWC098XjugLY9bY45wZU3j8gH5TOD9wgr4r988DyZof2dnhKqxiXCfW5rM93j1i1QwJEo3MfnBcy5yd5yA&h=t5E8cmxqpPEV74FY4X6xZWjhHdpYYjXRHmxTSIEsy3Y + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOmVhN2M2ZWVhOjJENjkxZDoyRDQzM2I6MkQ4ODFkOjJEYTkxMDQ1M2Q4ZjE4Iiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639113552921980715&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=O2XIcypuzXlf8shEmvdOJ2HCV3PPXEizWIGiC2rnkqibxeNjGVEUh__KNqs_fQuY8DfUM-GSjjpvJMHgPTENgL2gGUma4xfx__G_0k9g3yr5WhyJ9MXb_GiMIEYdzSVuE6xdxICXRpqJRLIZyCd7R1EJo_tWRYU609wCs4aW0xj1yQrt56EDT3kN6RQClfsIZL1OiDeXTYPEcOXrjnM33Pi7iJO5OvPb40PHo9B6CDuIPt-sIS0y2C2_Ep7Fk8SClw1e8BjuHvBhiMWSohO4JxAz5Ip6-ncHVZbiwXAiH0l16hsyvGqipJIW35iJi6Epoiro1d0kaut1PqLndz8VrA&h=7nkIUw0Rpnx5EGQgHZHA7APJ19cd19D-qY9BWJtG3XU method: GET response: proto: HTTP/2.0 @@ -457,18 +9679,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1116 + content_length: 1149 uncompressed: false - body: "{\r\n \"properties\": {\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg\"\r\n }\r\n ],\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"Delete\",\r\n \"resourceGroups\": \"Delete\",\r\n \"managementGroups\": \"Delete\",\r\n \"resourcesWithoutDeleteSupport\": \"Fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"None\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"type\": \"String\",\r\n \"value\": \"azdtest-w988f28\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"eastus2\"\r\n }\r\n },\r\n \"correlationId\": \"87d5c2211661b73bef7de46891985b3a\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w988f28\"\r\n}" + body: "{\r\n \"properties\": {\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy\"\r\n }\r\n ],\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"Delete\",\r\n \"resourceGroups\": \"Delete\",\r\n \"managementGroups\": \"Delete\",\r\n \"resourcesWithoutDeleteSupport\": \"Fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"None\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"type\": \"String\",\r\n \"value\": \"azdtest-d7ffc20\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"eastus2\"\r\n }\r\n },\r\n \"deploymentExtensions\": [],\r\n \"correlationId\": \"8abb2f864d65f93244d2155c72b7239e\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d7ffc20\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "1116" + - "1149" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:09 GMT + - Thu, 09 Apr 2026 18:15:06 GMT Expires: - "-1" Pragma: @@ -480,23 +9702,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/eastus2/e5aecbe9-ca61-437d-a7cf-63b037a1fc21 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/0372bd9b-115e-447d-9a66-0a5da0491f72 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d19f680f-d2e4-4a06-8105-51afac5585a5 + - 3ab909bd-11e5-4807-bd4d-eebd5b275605 X-Ms-Routing-Request-Id: - - EASTUS2:20260105T223310Z:ec43c35b-ea01-42ac-9a44-eba4675b755e + - EASTUS2:20260409T181507Z:cecc74ac-61a2-449a-b798-2ab8a92c841c X-Msedge-Ref: - - 'Ref A: 0FFF47C6AB4A44478A82BD066651B8CD Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:33:10Z' + - 'Ref A: 0AE19A6813474C859C74919E25709683 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:07Z' status: 200 OK code: 200 - duration: 148.8875ms - - id: 7 + duration: 86.334833ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -507,7 +9729,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$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":"10302170942741180062"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}' + body: '{"$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":"18238344461959563427"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}' form: {} headers: Accept: @@ -521,9 +9743,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -534,7 +9756,7 @@ interactions: trailer: {} content_length: 1403 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2019-04-01/DEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"DEFAULTVALUE\":\"[RESOURCEGROUP().LOCATION]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}}},\"VARIABLES\":{\"RESOURCETOKEN\":\"[TOLOWER(UNIQUESTRING(RESOURCEGROUP().ID, PARAMETERS(''ENVIRONMENTNAME''), PARAMETERS(''LOCATION'')))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"KIND\":\"STORAGEV2\",\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"10302170942741180062\"}}}","templateHash":"10302170942741180062"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2019-04-01/DEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"DEFAULTVALUE\":\"[RESOURCEGROUP().LOCATION]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}}},\"VARIABLES\":{\"RESOURCETOKEN\":\"[TOLOWER(UNIQUESTRING(RESOURCEGROUP().ID, PARAMETERS(''ENVIRONMENTNAME''), PARAMETERS(''LOCATION'')))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"KIND\":\"STORAGEV2\",\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"18238344461959563427\"}}}","templateHash":"18238344461959563427"}' headers: Cache-Control: - no-cache @@ -543,7 +9765,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:09 GMT + - Thu, 09 Apr 2026 18:15:06 GMT Expires: - "-1" Pragma: @@ -555,19 +9777,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - e01b2a19-d115-4c19-b145-0f6d894248c2 + - a906bb9d-97dc-4a3e-b79b-b4ca4d9a115a X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223310Z:e01b2a19-d115-4c19-b145-0f6d894248c2 + - EASTUS:20260409T181507Z:a906bb9d-97dc-4a3e-b79b-b4ca4d9a115a X-Msedge-Ref: - - 'Ref A: 276F6174577D4784A5A8259074048C53 Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:33:10Z' + - 'Ref A: 00B9716E3DFE43649DA1AFCF3F51D4E1 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:07Z' status: 200 OK code: 200 - duration: 54.0118ms - - id: 8 + duration: 93.687ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -578,7 +9800,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"environmentName":{"value":"azdtest-w988f28"},"location":{"value":"eastus2"}},"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":"10302170942741180062"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-w988f28","azd-layer-name":"","azd-provision-param-hash":"61f67913fba7d88fbafa0cc4c7dd62cad845ed15a17f9a5188ad34c9dbef748f","azd-provision-template-hash":"10302170942741180062"}}' + body: '{"properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"environmentName":{"value":"azdtest-d7ffc20"},"location":{"value":"eastus2"}},"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":"18238344461959563427"}},"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","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-d7ffc20","azd-layer-name":"","azd-provision-param-hash":"8595ae8b3f0b4a243191e304ee00dbadc09bd4e5236aa26ac87b890ccb8b1f9f","azd-provision-template-hash":"18238344461959563427"}}' form: {} headers: Accept: @@ -592,10 +9814,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28?api-version=2024-03-01 + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20?api-version=2024-03-01 method: PUT response: proto: HTTP/2.0 @@ -603,20 +9825,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1582 + content_length: 1580 uncompressed: false - body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w988f28\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"61f67913fba7d88fbafa0cc4c7dd62cad845ed15a17f9a5188ad34c9dbef748f\",\r\n \"azd-provision-template-hash\": \"10302170942741180062\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w988f28\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"87d5c2211661b73bef7de46891985b3a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:10.4241727Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:10.4241727Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w988f28\"\r\n}" + body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d7ffc20\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"8595ae8b3f0b4a243191e304ee00dbadc09bd4e5236aa26ac87b890ccb8b1f9f\",\r\n \"azd-provision-template-hash\": \"18238344461959563427\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d7ffc20\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"8abb2f864d65f93244d2155c72b7239e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:07.5412787Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:07.5412787Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d7ffc20\"\r\n}" headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/c5e58e90-61eb-4724-b75a-a47b69602ae2?api-version=2024-03-01&t=639032491919711363&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=h5oUB9x8-_dD1xmL2GgOmMuh0X0LG1BDtE2dVkMJQEBXpiJup-fhd0WysIsuLlAZD_5Adzamy3DjAoVGRJUfgCqGLvPgTn1yiS92uNqMTha7KCzzz-OxQ_ft5NNS6baMBJyp1rWN8cbNk_Sg-m0OO0UNFfgMYfNN0_mQqB2RQg1ELD7FzNDftHwybUTexbifmnUA-Stb-U1LyHsj8pSdaiR5kmB2iBmmjDh07L0n3MDpttgQmeQ_tEIkqgDO-ibYTr9qxWM2ME616FkCiGoS95cITEHmdRALGuKlFV_k6SEnWjs9mvBxeFxWiFxf6yIe0jzxgdoE38HpNWyCAAkGUw&h=j1bcWfDGjehk9_o9OIOpD0UJQLEnKE1knLEpbEOMnCU + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/d4c022be-3c24-4950-9fe4-513ea3ac294a?api-version=2024-03-01&t=639113553087756519&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=vDih1cJSelhvGP5drMabLzk_j371oqOvn38J1u2gQydkG9BYnC-DbIBDikzNygHdliDDxysOowoEOG8uk6ACOG-TvLneQ9tsu5NscEVvRwRm4S8x2ZCl3qf46OGfy71fnDp0mKQypL9P57L5lYsAlHKMrr-gfhdOgeOl8Y9yaZgRxsb7edaaSfmR-waxwb_XvQKQJiRbHvTBM2wNr7DgYFctfenEYkOWi5q9c8TJz1bqh5TxVvQVjpc01tMgA8v7MaLa6Pfruk4MdognffuA1IF7nve6pZ_QMv8lXJ05RWb0n_oZ54I-5QG-oNXjHuBfFipH4ooq1RJw811G-Ru-9w&h=YEbWDP4bCB1O9nSnT5XNiEd36C8VZ956Vp_aqIezvms Cache-Control: - no-cache Content-Length: - - "1582" + - "1580" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:11 GMT + - Thu, 09 Apr 2026 18:15:07 GMT Expires: - "-1" Pragma: @@ -630,23 +9852,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/abc3e2f8-e8a3-463b-98b8-b1265f891e03 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/e7f7f539-941f-431f-9fcc-ac2cf945588f X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 1c3fb431-0867-4082-a8fb-8296bc19efeb + - b2c89e43-3244-4c6f-a365-d0b26052a680 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223311Z:8a8dcc9a-ea8c-4438-854e-ceaca0f0d760 + - EASTUS2:20260409T181508Z:5408b5c5-a947-4791-8a33-85c569d6fb04 X-Msedge-Ref: - - 'Ref A: B882F96AE4A74C5EAB295BC36345596D Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:33:10Z' + - 'Ref A: 75B9EF20D2AC452F9D523DB0988D5939 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:07Z' status: 201 Created code: 201 - duration: 1.6714454s - - id: 9 + duration: 1.320833125s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -665,10 +9887,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/c5e58e90-61eb-4724-b75a-a47b69602ae2?api-version=2024-03-01&t=639032491919711363&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=h5oUB9x8-_dD1xmL2GgOmMuh0X0LG1BDtE2dVkMJQEBXpiJup-fhd0WysIsuLlAZD_5Adzamy3DjAoVGRJUfgCqGLvPgTn1yiS92uNqMTha7KCzzz-OxQ_ft5NNS6baMBJyp1rWN8cbNk_Sg-m0OO0UNFfgMYfNN0_mQqB2RQg1ELD7FzNDftHwybUTexbifmnUA-Stb-U1LyHsj8pSdaiR5kmB2iBmmjDh07L0n3MDpttgQmeQ_tEIkqgDO-ibYTr9qxWM2ME616FkCiGoS95cITEHmdRALGuKlFV_k6SEnWjs9mvBxeFxWiFxf6yIe0jzxgdoE38HpNWyCAAkGUw&h=j1bcWfDGjehk9_o9OIOpD0UJQLEnKE1knLEpbEOMnCU + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/d4c022be-3c24-4950-9fe4-513ea3ac294a?api-version=2024-03-01&t=639113553087756519&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=vDih1cJSelhvGP5drMabLzk_j371oqOvn38J1u2gQydkG9BYnC-DbIBDikzNygHdliDDxysOowoEOG8uk6ACOG-TvLneQ9tsu5NscEVvRwRm4S8x2ZCl3qf46OGfy71fnDp0mKQypL9P57L5lYsAlHKMrr-gfhdOgeOl8Y9yaZgRxsb7edaaSfmR-waxwb_XvQKQJiRbHvTBM2wNr7DgYFctfenEYkOWi5q9c8TJz1bqh5TxVvQVjpc01tMgA8v7MaLa6Pfruk4MdognffuA1IF7nve6pZ_QMv8lXJ05RWb0n_oZ54I-5QG-oNXjHuBfFipH4ooq1RJw811G-Ru-9w&h=YEbWDP4bCB1O9nSnT5XNiEd36C8VZ956Vp_aqIezvms method: GET response: proto: HTTP/2.0 @@ -678,7 +9900,7 @@ interactions: trailer: {} content_length: 260 uncompressed: false - body: "{\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/c5e58e90-61eb-4724-b75a-a47b69602ae2\",\r\n \"name\": \"c5e58e90-61eb-4724-b75a-a47b69602ae2\",\r\n \"status\": \"succeeded\"\r\n}" + body: "{\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/d4c022be-3c24-4950-9fe4-513ea3ac294a\",\r\n \"name\": \"d4c022be-3c24-4950-9fe4-513ea3ac294a\",\r\n \"status\": \"succeeded\"\r\n}" headers: Cache-Control: - no-cache @@ -687,7 +9909,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:34:29 GMT + - Thu, 09 Apr 2026 18:15:55 GMT Expires: - "-1" Pragma: @@ -699,23 +9921,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/3fcd570b-011f-4c71-bc87-1c797b455e4d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/492ace92-0cf9-4aa2-89cc-d9cf51ccc9c7 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 4b6c6aba-d3fd-4673-b814-e78a895f4b1f + - 01d7a99e-d37e-4a1d-9013-9b6b325a172a X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223429Z:f52fca5f-833a-4850-a8f0-26b733e47653 + - EASTUS2:20260409T181556Z:66b4388a-a5a7-4fb7-9e3b-54badafcd389 X-Msedge-Ref: - - 'Ref A: B832674AEAB84337963F8CBA8C36BA16 Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:34:29Z' + - 'Ref A: 0EF6B03C92184716A8E520FFF10D531A Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:55Z' status: 200 OK code: 200 - duration: 286.0146ms - - id: 10 + duration: 94.94475ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -734,10 +9956,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28?api-version=2024-03-01 + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -745,18 +9967,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2418 + content_length: 2416 uncompressed: false - body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w988f28\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"61f67913fba7d88fbafa0cc4c7dd62cad845ed15a17f9a5188ad34c9dbef748f\",\r\n \"azd-provision-template-hash\": \"10302170942741180062\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w988f28-260105229po4u\",\r\n \"duration\": \"PT55.2671601S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"storagE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg\"\r\n },\r\n \"storagE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stk5a3b74bnlhvg\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w988f28\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"87d5c2211661b73bef7de46891985b3a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:10.4241727Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:10.4241727Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w988f28\"\r\n}" + body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d7ffc20\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"8595ae8b3f0b4a243191e304ee00dbadc09bd4e5236aa26ac87b890ccb8b1f9f\",\r\n \"azd-provision-template-hash\": \"18238344461959563427\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d7ffc20-260409184fj22\",\r\n \"duration\": \"PT28.7863752S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"storagE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy\"\r\n },\r\n \"storagE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stkicioizem57zy\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d7ffc20\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"8abb2f864d65f93244d2155c72b7239e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:07.5412787Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:07.5412787Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d7ffc20\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "2418" + - "2416" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:34:30 GMT + - Thu, 09 Apr 2026 18:15:55 GMT Expires: - "-1" Pragma: @@ -768,23 +9990,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/fbbd70bd-aa88-44fb-ab9d-fa3ca84afb3b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/f84b2b57-2525-4ee4-b277-007cc0509f9e X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3c21ec6c-9e17-415f-aa3d-65eaeb8a4d1a + - ebea9270-509f-49aa-a654-04d9a448771c X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223430Z:484f3e6c-af2f-4a71-9179-e708ec841787 + - EASTUS2:20260409T181556Z:83e03b3c-0a80-418c-8640-e7cbc0e36fe8 X-Msedge-Ref: - - 'Ref A: A64170FB54AB49169D65C472E84C6C4A Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:34:29Z' + - 'Ref A: CF1FE0CE01114ADDB37A61E9B4E63BF6 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:56Z' status: 200 OK code: 200 - duration: 276.2991ms - - id: 11 + duration: 72.905333ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -805,10 +10027,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28?api-version=2024-03-01 + - 8abb2f864d65f93244d2155c72b7239e + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -816,18 +10038,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2418 + content_length: 2416 uncompressed: false - body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w988f28\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"61f67913fba7d88fbafa0cc4c7dd62cad845ed15a17f9a5188ad34c9dbef748f\",\r\n \"azd-provision-template-hash\": \"10302170942741180062\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w988f28-260105229po4u\",\r\n \"duration\": \"PT55.2671601S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"storagE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg\"\r\n },\r\n \"storagE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stk5a3b74bnlhvg\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w988f28\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"87d5c2211661b73bef7de46891985b3a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:10.4241727Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:10.4241727Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w988f28\"\r\n}" + body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d7ffc20\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"8595ae8b3f0b4a243191e304ee00dbadc09bd4e5236aa26ac87b890ccb8b1f9f\",\r\n \"azd-provision-template-hash\": \"18238344461959563427\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d7ffc20-260409184fj22\",\r\n \"duration\": \"PT28.7863752S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"storagE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy\"\r\n },\r\n \"storagE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stkicioizem57zy\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d7ffc20\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"8abb2f864d65f93244d2155c72b7239e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:07.5412787Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:07.5412787Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d7ffc20\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "2418" + - "2416" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:34:30 GMT + - Thu, 09 Apr 2026 18:15:55 GMT Expires: - "-1" Pragma: @@ -839,23 +10061,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87d5c2211661b73bef7de46891985b3a + - 8abb2f864d65f93244d2155c72b7239e X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/eastus2/46d6bfd2-04af-4319-9bd0-b79bd827c817 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/0627469c-d755-4e92-a1d9-bcde4ceefce5 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b599b17b-5807-45c7-bbf1-5bd6dd851a19 + - a57a0ddb-00b1-45a3-8d29-09c3fb5fc8e8 X-Ms-Routing-Request-Id: - - EASTUS2:20260105T223430Z:0d0b4bbf-35f4-4af7-8194-f70c72bf8c7f + - EASTUS2:20260409T181556Z:939aff46-19e3-46ad-8b2c-816a535be68d X-Msedge-Ref: - - 'Ref A: 269E79EA82B74643A2DA733910BB079E Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:34:30Z' + - 'Ref A: 06A79D0B76394AF6A7D273FDBA25EE8B Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:56Z' status: 200 OK code: 200 - duration: 172.3571ms - - id: 12 + duration: 81.892375ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -876,10 +10098,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 + - 894500294d6fba8ff4ad7a6d05551baf + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -887,18 +10109,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1925 + content_length: 1923 uncompressed: false - body: '{"value":[{"tags":{"azd-env-name":"azdtest-w988f28","azd-layer-name":"","azd-provision-param-hash":"61f67913fba7d88fbafa0cc4c7dd62cad845ed15a17f9a5188ad34c9dbef748f","azd-provision-template-hash":"10302170942741180062"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w988f28-260105229po4u","duration":"PT55.2671601S","denySettings":{"mode":"none","applyToChildScopes":false,"excludedPrincipals":[],"excludedActions":[]},"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg"},"storagE_ACCOUNT_NAME":{"type":"String","value":"stk5a3b74bnlhvg"}},"parameters":{"environmentName":{"value":"azdtest-w988f28","type":"string"},"location":{"value":"eastus2","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"87d5c2211661b73bef7de46891985b3a"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-05T22:33:10.4241727Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-05T22:33:10.4241727Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-w988f28"}]}' + body: '{"value":[{"tags":{"azd-env-name":"azdtest-d7ffc20","azd-layer-name":"","azd-provision-param-hash":"8595ae8b3f0b4a243191e304ee00dbadc09bd4e5236aa26ac87b890ccb8b1f9f","azd-provision-template-hash":"18238344461959563427"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d7ffc20-260409184fj22","duration":"PT28.7863752S","denySettings":{"mode":"none","applyToChildScopes":false,"excludedPrincipals":[],"excludedActions":[]},"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy"},"storagE_ACCOUNT_NAME":{"type":"String","value":"stkicioizem57zy"}},"parameters":{"environmentName":{"value":"azdtest-d7ffc20","type":"string"},"location":{"value":"eastus2","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"8abb2f864d65f93244d2155c72b7239e"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:15:07.5412787Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:15:07.5412787Z"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-d7ffc20"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1925" + - "1923" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:34:34 GMT + - Thu, 09 Apr 2026 18:15:57 GMT Expires: - "-1" Pragma: @@ -910,25 +10132,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 + - 894500294d6fba8ff4ad7a6d05551baf X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/4de77bcc-c2b1-41e0-b542-f8da42af23d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/50cffabb-7a8d-4090-b5d6-70b42e5851e0 X-Ms-Original-Request-Ids: - - 473172ab-fe7b-4f77-891c-94bc29cca639 + - e9ffd158-14af-4429-a459-fac0361d1a2f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 70022c6f-d689-4a1b-86e3-d676da0fca1e + - 21f85c1d-2690-4b80-b87b-83eb6c5d4e2e X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223434Z:70022c6f-d689-4a1b-86e3-d676da0fca1e + - EASTUS2:20260409T181558Z:21f85c1d-2690-4b80-b87b-83eb6c5d4e2e X-Msedge-Ref: - - 'Ref A: BD58225A1BA84AD385A744AD555EBABC Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:34:34Z' + - 'Ref A: 7EB295493EA04B77815EF4E674EF951D Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:58Z' status: 200 OK code: 200 - duration: 129.5797ms - - id: 13 + duration: 71.798916ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -949,10 +10171,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28?api-version=2024-03-01 + - 894500294d6fba8ff4ad7a6d05551baf + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -960,18 +10182,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2418 + content_length: 2416 uncompressed: false - body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w988f28\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"61f67913fba7d88fbafa0cc4c7dd62cad845ed15a17f9a5188ad34c9dbef748f\",\r\n \"azd-provision-template-hash\": \"10302170942741180062\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w988f28-260105229po4u\",\r\n \"duration\": \"PT55.2671601S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"storagE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg\"\r\n },\r\n \"storagE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stk5a3b74bnlhvg\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w988f28\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Storage/storageAccounts/stk5a3b74bnlhvg\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"87d5c2211661b73bef7de46891985b3a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:10.4241727Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:10.4241727Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w988f28\"\r\n}" + body: "{\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d7ffc20\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"8595ae8b3f0b4a243191e304ee00dbadc09bd4e5236aa26ac87b890ccb8b1f9f\",\r\n \"azd-provision-template-hash\": \"18238344461959563427\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d7ffc20-260409184fj22\",\r\n \"duration\": \"PT28.7863752S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"storagE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy\"\r\n },\r\n \"storagE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stkicioizem57zy\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d7ffc20\",\r\n \"type\": \"string\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Storage/storageAccounts/stkicioizem57zy\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"8abb2f864d65f93244d2155c72b7239e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:07.5412787Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:07.5412787Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d7ffc20\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "2418" + - "2416" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:34:34 GMT + - Thu, 09 Apr 2026 18:15:57 GMT Expires: - "-1" Pragma: @@ -983,23 +10205,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 + - 894500294d6fba8ff4ad7a6d05551baf X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/eastus2/cc29dc42-cf72-4331-bc49-a69673a5ff86 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/32f4334b-fff6-4a92-b26a-252906e37806 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 32d98bb7-24fa-42f3-ad42-84d6cfb7f7bf + - a69c10d6-d83a-4cd1-b817-c2e61d0dfda2 X-Ms-Routing-Request-Id: - - EASTUS2:20260105T223434Z:3b0c44a1-d7e5-4324-bb0a-1cafbf559679 + - EASTUS2:20260409T181558Z:be8fd84f-fcce-4a07-a92c-a01ed6c40dd3 X-Msedge-Ref: - - 'Ref A: 642B5FD1A1414AFDBA3EFDF3B99BA92D Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:34:34Z' + - 'Ref A: 19BF7E0BAA634463B3F0C93CD6B11DC6 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:58Z' status: 200 OK code: 200 - duration: 256.6404ms - - id: 14 + duration: 71.84ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1020,10 +10242,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w988f28/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w988f28?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete + - 894500294d6fba8ff4ad7a6d05551baf + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d7ffc20/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d7ffc20?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete method: DELETE response: proto: HTTP/2.0 @@ -1036,13 +10258,13 @@ interactions: body: "" headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/f5bff006-2cb2-4010-acc4-be63459e6bf2?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639032492757635782&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=qVng5BoxpdINMEh-fhlWKH_Nd8G6aSb1vhtAAAedTqm-1hxlIpnPcmYJs8ji0efTFUCVLjAsGsDOonQ3SW2Dh3IoK78yhLpN1vXG3I7OXqLOupWgLDTJyrI5nF9l2x7osChKghxZqqYFToGxwpSm8oMxOUJNzwfB1IXQqSAZXEUtTuFvFxT0eZ5exg9cjQ1sytTccM2sOtnOdDh76iC5mgUjhvJ6sNbEnQSeGVD-xFSU99HitTYRbrmGqYvs6V8gvJf05G7RRYCZqEoew3s29o7yljirKdiaAf29f5pCHGjIrVcCk-f6NxPH7SJokKp4oubPzzrEaEWG80WFfuHyLQ&h=YPLdDqvK42w3e-ROdR3d7Mu4IK-nN7eglvh3sJa20vY + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/b6452c0f-10f5-43a2-93f3-79f6b2b36b2c?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639113553588025780&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=aqN7edD-HSIrFLqbzevci9Rdkb_bPFc1fiDzQZQoxFBMz2e9b0FDKDjUWK-d_2ueJF2knf82PoEhMeght80MmM2XkMC_l2r0NGtHS5a4-wdvtVcrWkA0wGL9rbWuxKwKoSMeWq2tpTlAbILR9YE6RgbBkpNBjI0RQ7zBmi2tG-KkNsNcdZXTIEn-1mwzMtbqLeEb7ogfk_MLTfsUPmfb6yHAKLOrS5aRXp637mzzDntHUCKqz576o3t5yFc0KX92LmZ8ZLoIuANYCJZqoeP_opoxjowssDVe7FWdUXAGrkRQ9DwyX9n1s37sb-c2GGKNop8pbxmPVtEAAkomG-ZewQ&h=ydJqB7J63ExgwP4RODeo66yiO3-QrrWr1uHr6leiCwM Cache-Control: - no-cache Content-Length: - "0" Date: - - Mon, 05 Jan 2026 22:34:35 GMT + - Thu, 09 Apr 2026 18:15:57 GMT Expires: - "-1" Pragma: @@ -1056,23 +10278,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 + - 894500294d6fba8ff4ad7a6d05551baf X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/eastus2/13d55c35-16b5-489d-817d-b16b367dbffe + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/9205817e-3a52-4f84-9cfa-2e7c2067cf1c X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - ac446f2a-0f42-463a-bbcd-76f9b9d6d33c + - 967c5566-9c2c-4162-bd7a-585befbc9770 X-Ms-Routing-Request-Id: - - EASTUS2:20260105T223435Z:939ebec2-4f4e-472d-b747-9f1e2e974baa + - EASTUS2:20260409T181558Z:329d0b9b-1852-4a4f-944a-706a4852f89f X-Msedge-Ref: - - 'Ref A: 293DA5224AA14E3D944A7B73E7087F65 Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:34:34Z' + - 'Ref A: 5B21419E7EB94F75AEE269FAAFA5BBF5 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:15:58Z' status: 202 Accepted code: 202 - duration: 860.8681ms - - id: 15 + duration: 675.928875ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1091,10 +10313,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/f5bff006-2cb2-4010-acc4-be63459e6bf2?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639032492757635782&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=qVng5BoxpdINMEh-fhlWKH_Nd8G6aSb1vhtAAAedTqm-1hxlIpnPcmYJs8ji0efTFUCVLjAsGsDOonQ3SW2Dh3IoK78yhLpN1vXG3I7OXqLOupWgLDTJyrI5nF9l2x7osChKghxZqqYFToGxwpSm8oMxOUJNzwfB1IXQqSAZXEUtTuFvFxT0eZ5exg9cjQ1sytTccM2sOtnOdDh76iC5mgUjhvJ6sNbEnQSeGVD-xFSU99HitTYRbrmGqYvs6V8gvJf05G7RRYCZqEoew3s29o7yljirKdiaAf29f5pCHGjIrVcCk-f6NxPH7SJokKp4oubPzzrEaEWG80WFfuHyLQ&h=YPLdDqvK42w3e-ROdR3d7Mu4IK-nN7eglvh3sJa20vY + - 894500294d6fba8ff4ad7a6d05551baf + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/b6452c0f-10f5-43a2-93f3-79f6b2b36b2c?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639113553588025780&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=aqN7edD-HSIrFLqbzevci9Rdkb_bPFc1fiDzQZQoxFBMz2e9b0FDKDjUWK-d_2ueJF2knf82PoEhMeght80MmM2XkMC_l2r0NGtHS5a4-wdvtVcrWkA0wGL9rbWuxKwKoSMeWq2tpTlAbILR9YE6RgbBkpNBjI0RQ7zBmi2tG-KkNsNcdZXTIEn-1mwzMtbqLeEb7ogfk_MLTfsUPmfb6yHAKLOrS5aRXp637mzzDntHUCKqz576o3t5yFc0KX92LmZ8ZLoIuANYCJZqoeP_opoxjowssDVe7FWdUXAGrkRQ9DwyX9n1s37sb-c2GGKNop8pbxmPVtEAAkomG-ZewQ&h=ydJqB7J63ExgwP4RODeo66yiO3-QrrWr1uHr6leiCwM method: GET response: proto: HTTP/2.0 @@ -1104,7 +10326,7 @@ interactions: trailer: {} content_length: 260 uncompressed: false - body: "{\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/f5bff006-2cb2-4010-acc4-be63459e6bf2\",\r\n \"name\": \"f5bff006-2cb2-4010-acc4-be63459e6bf2\",\r\n \"status\": \"succeeded\"\r\n}" + body: "{\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/b6452c0f-10f5-43a2-93f3-79f6b2b36b2c\",\r\n \"name\": \"b6452c0f-10f5-43a2-93f3-79f6b2b36b2c\",\r\n \"status\": \"succeeded\"\r\n}" headers: Cache-Control: - no-cache @@ -1113,7 +10335,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:36:23 GMT + - Thu, 09 Apr 2026 18:17:45 GMT Expires: - "-1" Pragma: @@ -1125,23 +10347,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0e889408bdfd35883de6795284b7200 + - 894500294d6fba8ff4ad7a6d05551baf X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/b078db4f-9a03-47f1-a58b-dadf15cca132 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/d8a67dc1-f791-4cec-8ad3-0f21f6f8856b X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 84d2d1fe-b645-4f99-8f29-745a657b1ffc + - 5089e48b-ab7d-4dca-a914-66261d8bf17b X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223623Z:63d0414b-4f03-453e-909d-6f3fd804b450 + - EASTUS:20260409T181746Z:a8a80501-f13f-4c70-9575-6341f65f3c1b X-Msedge-Ref: - - 'Ref A: F402CA34876546978E14E411887AE610 Ref B: CO6AA3150220009 Ref C: 2026-01-05T22:36:23Z' + - 'Ref A: 23A91456F8544199B932182E3146EA76 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:17:46Z' status: 200 OK code: 200 - duration: 134.8974ms + duration: 99.878083ms --- -env_name: azdtest-w988f28 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1767652345" +env_name: azdtest-d7ffc20 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775758483" diff --git a/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/Subscription_Scope_Up_Down.yaml b/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/Subscription_Scope_Up_Down.yaml index 3ad46bfcbe2..4bcd0f76f81 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/Subscription_Scope_Up_Down.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_DeploymentStacks/Subscription_Scope_Up_Down.yaml @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47415 + content_length: 47870 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "47415" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:32:49 GMT + - Thu, 09 Apr 2026 18:14:49 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2860694d-8ecd-47fd-83eb-9de61b22d0c8 + - f102508f-aa62-40f9-9812-86ec18132804 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223249Z:2860694d-8ecd-47fd-83eb-9de61b22d0c8 + - EASTUS2:20260409T181449Z:f102508f-aa62-40f9-9812-86ec18132804 X-Msedge-Ref: - - 'Ref A: B7F6C6DCC749494CA589E7D8DF1B2679 Ref B: MWH011020809042 Ref C: 2026-01-05T22:32:47Z' + - 'Ref A: 1D2EFEE5255244C69295F397DA325AA7 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:14:48Z' status: 200 OK code: 200 - duration: 2.0290077s + duration: 1.063139833s - id: 1 request: proto: HTTP/1.1 @@ -91,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -102,18 +102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 114513 + content_length: 12 uncompressed: false - body: '{"value":[{"location":"eastus2","tags":{"azd-env-name":"wb-devcenter","azd-provision-param-hash":"1703eb68c2ad1b43d805b4f3629347ab536b518c74cac8524214d1e5e177fec0","azd-provision-template-hash":"12936708950563926356"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wb-devcenter-24090419dkbg6","duration":"P49DT40M15.0480908S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}},"parameters":{"environmentName":{"value":"wb-devcenter","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Dev"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Dev"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/212c5cf8-80df-55be-ab33-1a94ba7d50db"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/2e853c6c-0075-5269-993e-359edba0ce52"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/882a618a-dcac-529a-8bd9-eed56c85ed97"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/9e4222b4-d71b-5ef1-a6d5-309a1b0e91c8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/c3cb2abf-0753-5362-ba67-ba0dd89f5aef"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/d1c24fc0-0eab-5df4-8369-54ec87eb54bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/e07609f2-9b90-5d93-9324-61d4a305e7c1"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/catalogs/Example"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Prod"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Test"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/providers/Microsoft.Insights/diagnosticSettings/logs"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Prod"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Test"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/providers/Microsoft.Authorization/roleAssignments/55c37c1b-7c47-5d5f-8a02-a002a256260f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Dev"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Prod"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Test"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/providers/Microsoft.Authorization/roleAssignments/43c4b66a-690c-58a4-8fcb-1c4785dad8d1"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.OperationalInsights/workspaces/law-v2g7nbovakbgg"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1"}],"failedResources":[{"error":{"code":"AssociatedProjectsExist","message":"There are projects currently associated to this DevCenter. Please delete dependent Projects before attempting to delete this resource. Associated Projects: [/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-wb-devcenter/providers/microsoft.devcenter/projects/project-1]","details":[],"additionalInfo":[]},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg"},{"error":{"code":"DependentResourcesExist","message":"Resources of type Microsoft.DevCenter/projects/environmenttypes which depend on this resource still exist. Delete the dependent resources before attempting to delete this resource.","details":[],"additionalInfo":[]},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Dev"},{"error":{"code":"DependentResourcesExist","message":"Resources of type environment which depend on this resource still exist. Delete the dependent resources before attempting to delete this resource.","details":[],"additionalInfo":[]},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Dev"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''c820a957-ac47-4829-9fb2-2f48f1af58b5''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"c820a957-ac47-4829-9fb2-2f48f1af58b5"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-09-04T19:46:21.2576015Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-04T19:46:21.2576015Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wb-devcenter","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wb-devcenter"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-soaijs","azd-provision-param-hash":"496c45d4651d05f5d5902391d322c026d3e692d57a2892f869bdba5d14e610a7","azd-provision-template-hash":"15807534371776706057"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-soaijs-24102422egazq","duration":"PT20H15M40.7628777S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crrhyrwnrgiq3jy.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crrhyrwnrgiq3jy"},"azurE_OPENAI_SERVICE":{"type":"String","value":"cog-rhyrwnrgiq3jy"},"azurE_OPENAI_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"azurE_OPENAI_CHATGPT_DEPLOYMENT":{"type":"String","value":"chat"},"azurE_OPENAI_CHATGPT_MODEL":{"type":"String","value":"gpt-35-turbo"},"azurE_OPENAI_EMBEDDING_DEPLOYMENT":{"type":"String","value":"embedding"},"azurE_OPENAI_EMBEDDING_MODEL":{"type":"String","value":"text-embedding-ada-002"},"azurE_SEARCH_INDEX":{"type":"String","value":"gptkbindex"},"azurE_SEARCH_SERVICE":{"type":"String","value":"gptkb-rhyrwnrgiq3jy"},"azurE_SEARCH_SERVICE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"azurE_STORAGE_ACCOUNT":{"type":"String","value":"strhyrwnrgiq3jy"},"azurE_STORAGE_CONTAINER":{"type":"String","value":"content"},"azurE_STORAGE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"webapP_URI":{"type":"String","value":"https://ashy-pebble-04849580f.5.azurestaticapps.net"},"searcH_API_URI":{"type":"String","value":"https://search.greentree-efb41532.eastus2.azurecontainerapps.io"},"indexeR_API_URI":{"type":"String","value":"https://indexer.greentree-efb41532.eastus2.azurecontainerapps.io"},"alloweD_ORIGINS":{"type":"String","value":"https://ashy-pebble-04849580f.5.azurestaticapps.net,''''"},"backenD_URI":{"type":"String","value":"https://search.greentree-efb41532.eastus2.azurecontainerapps.io"},"indexeR_PRINCIPAL_ID":{"type":"String","value":"4d2ebf28-d51f-4cc7-801c-bcfaea042c9c"},"searcH_API_PRINCIPAL_ID":{"type":"String","value":"6632bab4-54b2-4650-a24f-253b68f49ecd"}},"parameters":{"allowedOrigin":{"value":"''''","type":"string"},"chatGptDeploymentName":{"value":"chat","type":"string"},"chatGptModelName":{"value":"gpt-35-turbo","type":"string"},"chatGptModelVersion":{"value":"0613","type":"string"},"environmentName":{"value":"wabrez-soaijs","type":"string"},"isContinuousDeployment":{"value":false,"type":"bool"},"location":{"value":"eastus2","type":"string"},"openAiResourceGroupLocation":{"value":"eastus2","type":"string"},"openAiSkuName":{"value":"S0","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"searchIndexName":{"value":"gptkbindex","type":"string"},"searchServiceSkuName":{"value":"standard","type":"string"},"storageSkuName":{"value":"Standard_LRS","type":"string"},"webAppLocation":{"value":"eastus2","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/indexer"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/search"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/managedEnvironments/cae-rhyrwnrgiq3jy"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/0069e26a-fbca-51bb-807c-4d3f8a117210"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/133ca5fc-eea9-524c-882a-4a68842247b0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/153afc47-2e0d-53b4-92dd-4ac9fb23e66b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/4d0880a5-4024-5c43-be30-3b1fb9e1736b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/56410136-bf16-55ac-b722-ee8f81a6d136"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/6889fda7-8b08-52ea-a4aa-538038c9d48b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/6f1b1914-c1e3-51bb-a388-919fd62e036b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/8a07f63b-e7be-56d1-ab77-730d2491082b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/af1c4ac2-f810-535b-a103-6e346e8ab245"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/be971969-0f24-511f-ad39-666aba972703"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/e689cd2e-75c8-55da-a685-5f7c75b79074"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.CognitiveServices/accounts/cog-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.CognitiveServices/accounts/cog-rhyrwnrgiq3jy/deployments/chat"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.CognitiveServices/accounts/cog-rhyrwnrgiq3jy/deployments/embedding"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ContainerRegistry/registries/crrhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ContainerRegistry/registries/crrhyrwnrgiq3jy/providers/Microsoft.Authorization/roleAssignments/b1526f99-138b-54fc-80e6-f37aac9b6f44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ContainerRegistry/registries/crrhyrwnrgiq3jy/providers/Microsoft.Authorization/roleAssignments/f3520502-dd0a-5582-99e6-34b0c7740c64"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Insights/components/appi-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-indexer-api-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-search-api-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.OperationalInsights/workspaces/log-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Portal/dashboards/dash-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Search/searchServices/gptkb-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Storage/storageAccounts/strhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Storage/storageAccounts/strhyrwnrgiq3jy/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Storage/storageAccounts/strhyrwnrgiq3jy/blobServices/default/containers/content"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Web/staticSites/webapp"}],"failedResources":[{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/indexer"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/search"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/managedEnvironments/cae-rhyrwnrgiq3jy"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''ac6cc69c-94ae-4378-91c1-f7a0e92be492''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"ac6cc69c-94ae-4378-91c1-f7a0e92be492"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-10-24T22:49:22.5936173Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-24T22:49:22.5936173Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-soaijs","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-soaijs"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-todo-aca-04","azd-provision-param-hash":"809d08fa4229bb0ba335cbf9a699466a6b66fb0205e142d139d17552f8cef27b","azd-provision-template-hash":"16358757304958454518"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-todo-aca-04-24102423bczpi","duration":"PT19H41M56.1954495S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_COSMOS_CONNECTION_STRING_KEY":{"type":"String","value":"AZURE-COSMOS-CONNECTION-STRING"},"azurE_COSMOS_DATABASE_NAME":{"type":"String","value":"Todo"},"apI_CORS_ACA_URL":{"type":"String","value":"https://ca-web-kwwjrk3nujxqo.niceground-f03c01f5.eastus2.azurecontainerapps.io"},"applicationinsightS_CONNECTION_STRING":{"type":"String","value":"InstrumentationKey=cdee56df-54e4-4ada-bca2-dbe9ae6c65f7;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=4a0caec3-456b-4842-a79d-5aee22515574"},"applicationinsightS_NAME":{"type":"String","value":"appi-kwwjrk3nujxqo"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-kwwjrk3nujxqo"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crkwwjrk3nujxqo.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crkwwjrk3nujxqo"},"azurE_KEY_VAULT_ENDPOINT":{"type":"String","value":"https://kv-kwwjrk3nujxqo.vault.azure.net/"},"azurE_KEY_VAULT_NAME":{"type":"String","value":"kv-kwwjrk3nujxqo"},"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"apI_BASE_URL":{"type":"String","value":"https://ca-api-kwwjrk3nujxqo.niceground-f03c01f5.eastus2.azurecontainerapps.io"},"reacT_APP_WEB_BASE_URL":{"type":"String","value":"https://ca-web-kwwjrk3nujxqo.niceground-f03c01f5.eastus2.azurecontainerapps.io"},"servicE_API_NAME":{"type":"String","value":"ca-api-kwwjrk3nujxqo"},"servicE_WEB_NAME":{"type":"String","value":"ca-web-kwwjrk3nujxqo"},"usE_APIM":{"type":"Bool","value":false},"servicE_API_ENDPOINTS":{"type":"Array","value":[]}},"parameters":{"apiAppExists":{"value":false,"type":"bool"},"apimSku":{"value":"Consumption","type":"string"},"containerRegistryHostSuffix":{"value":"azurecr.io","type":"string"},"environmentName":{"value":"wabrez-todo-aca-04","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"useAPIM":{"value":false,"type":"bool"},"webAppExists":{"value":false,"type":"bool"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-api-kwwjrk3nujxqo"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-web-kwwjrk3nujxqo"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/managedEnvironments/cae-kwwjrk3nujxqo"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ContainerRegistry/registries/crkwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ContainerRegistry/registries/crkwwjrk3nujxqo/providers/Microsoft.Authorization/roleAssignments/5ec79453-e8de-51fe-89db-8f7fa3dbedbe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ContainerRegistry/registries/crkwwjrk3nujxqo/providers/Microsoft.Authorization/roleAssignments/d8422f41-7ef1-5b59-9208-da5bbf858bf0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo/mongodbDatabases/Todo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo/mongodbDatabases/Todo/collections/TodoItem"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo/mongodbDatabases/Todo/collections/TodoList"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.Insights/components/appi-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.KeyVault/vaults/kv-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.KeyVault/vaults/kv-kwwjrk3nujxqo/accessPolicies/add"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.KeyVault/vaults/kv-kwwjrk3nujxqo/secrets/AZURE-COSMOS-CONNECTION-STRING"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-api-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-web-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.OperationalInsights/workspaces/log-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.Portal/dashboards/dash-kwwjrk3nujxqo"}],"failedResources":[{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-api-kwwjrk3nujxqo"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-web-kwwjrk3nujxqo"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/managedEnvironments/cae-kwwjrk3nujxqo"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''a70a407ab0438e1a3eb2a7ac1c228167''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"a70a407ab0438e1a3eb2a7ac1c228167"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-10-24T23:38:49.1558649Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-24T23:38:49.1558649Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-todo-aca-04","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-todo-aca-04"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-js-langchain","azd-provision-param-hash":"e322da0b7d5dce14ca3297900cbee38d05e35a2eb86a14666e432e412d888938","azd-provision-template-hash":"7323834621748011077"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-js-langchain-24102520cy8rr","duration":"PT5M54.7609361S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-js-langchain"},"azurE_OPENAI_API_ENDPOINT":{"type":"String","value":"https://cog-qufro6puft7wm.openai.azure.com"},"azurE_OPENAI_API_INSTANCE_NAME":{"type":"String","value":"cog-qufro6puft7wm"},"azurE_OPENAI_API_VERSION":{"type":"String","value":"2024-02-01"},"azurE_OPENAI_API_DEPLOYMENT_NAME":{"type":"String","value":"gpt-4"},"azurE_OPENAI_API_EMBEDDINGS_DEPLOYMENT_NAME":{"type":"String","value":"text-embedding-ada-002"},"azurE_STORAGE_URL":{"type":"String","value":"https://stqufro6puft7wm.blob.core.windows.net"},"azurE_STORAGE_CONTAINER_NAME":{"type":"String","value":"files"},"azurE_COSMOSDB_NOSQL_ENDPOINT":{"type":"String","value":"https://cosmos-qufro6puft7wm.documents.azure.com:443/"},"apI_URL":{"type":"String","value":"https://func-api-qufro6puft7wm.azurewebsites.net"},"webapP_URL":{"type":"String","value":"https://wonderful-dune-03928eb0f.5.azurestaticapps.net"},"uploaD_URL":{"type":"String","value":"https://func-api-qufro6puft7wm.azurewebsites.net"}},"parameters":{"chatModelName":{"value":"gpt-4","type":"string"},"chatModelVersion":{"value":"turbo-2024-04-09","type":"string"},"embeddingsModelName":{"value":"text-embedding-ada-002","type":"string"},"embeddingsModelVersion":{"value":"2","type":"string"},"environmentName":{"value":"wabrez-js-langchain","type":"string"},"isContinuousDeployment":{"value":false,"type":"bool"},"location":{"value":"eastus2","type":"string"},"openAiApiVersion":{"value":"2024-02-01","type":"string"},"openAiLocation":{"value":"eastus2","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"useVnet":{"value":false,"type":"bool"},"webappLocation":{"value":"eastus2","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/03847389-20fc-5b3d-a57c-3330b0e87322"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/703fc402-76b0-5ad1-86fc-3d74174d7ccb"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/eb308de5-244c-5c93-b756-a1073fbf74b9"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/f0be220a-efb0-55cf-ae5c-ba617cc3966f"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.CognitiveServices/accounts/cog-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.CognitiveServices/accounts/cog-qufro6puft7wm/deployments/gpt-4"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.CognitiveServices/accounts/cog-qufro6puft7wm/deployments/text-embedding-ada-002"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlDatabases/vectorSearchDB"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlDatabases/vectorSearchDB/containers/vectorSearchContainer"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlRoleAssignments/4a4720f9-6dee-528e-aea7-404486c8099a"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlRoleAssignments/823e98b2-f0f8-5722-95f5-aae6514b4fd4"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlRoleDefinitions/8dbddcdb-d0d9-59b7-b9a4-cdae5973654b"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Insights/components/appi-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.OperationalInsights/workspaces/log-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Portal/dashboards/dash-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Storage/storageAccounts/stqufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Storage/storageAccounts/stqufro6puft7wm/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Storage/storageAccounts/stqufro6puft7wm/blobServices/default/containers/files"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/serverfarms/plan-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/basicPublishingCredentialsPolicies/ftp"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/basicPublishingCredentialsPolicies/scm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/config/appsettings"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/config/logs"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/staticSites/webapp"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"6143501b12417681d2338cabe37893ea"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-10-25T20:44:15.2281232Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-25T20:44:15.2281232Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-js-langchain","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-js-langchain"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-ai-hoolis","azd-provision-param-hash":"066900d972674f5a0be2883b6676c46d189bef6083450e364b0befaa69fd4fad","azd-provision-template-hash":"9113841959502242968"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-ai-hoolis-241203223efld","duration":"PT4H12M24.2034039S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-ai-hoolis"},"azureaI_HUB_NAME":{"type":"String","value":"ai-hub-3erlnu6mjxgn6"},"azureaI_PROJECT_NAME":{"type":"String","value":"ai-project-3erlnu6mjxgn6"},"azureaI_ENDPOINT_NAME":{"type":"String","value":"mloe-3erlnu6mjxgn6"},"azurE_OPENAI_NAME":{"type":"String","value":"aoai-3erlnu6mjxgn6"},"azurE_OPENAI_ENDPOINT":{"type":"String","value":"https://aoai-3erlnu6mjxgn6.openai.azure.com/"},"azurE_SEARCH_NAME":{"type":"String","value":"srch-3erlnu6mjxgn6"},"azurE_SEARCH_ENDPOINT":{"type":"String","value":"https://srch-3erlnu6mjxgn6.search.windows.net/"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cr3erlnu6mjxgn6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cr3erlnu6mjxgn6.azurecr.io"},"azurE_KEYVAULT_NAME":{"type":"String","value":"kv-3erlnu6mjxgn6"},"azurE_KEYVAULT_ENDPOINT":{"type":"String","value":"https://kv-3erlnu6mjxgn6.vault.azure.net/"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st3erlnu6mjxgn6"},"azurE_STORAGE_ACCOUNT_ENDPOINT":{"type":"String","value":"st3erlnu6mjxgn6"},"azurE_APPLICATION_INSIGHTS_NAME":{"type":"String","value":"appi-3erlnu6mjxgn6"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"log-3erlnu6mjxgn6"}},"parameters":{"aiHubName":{"value":"ai-hub-3erlnu6mjxgn6","type":"string"},"aiProjectName":{"value":"ai-project-3erlnu6mjxgn6","type":"string"},"applicationInsightsName":{"value":"appi-3erlnu6mjxgn6","type":"string"},"containerRegistryName":{"value":"cr3erlnu6mjxgn6","type":"string"},"endpointName":{"value":"mloe-3erlnu6mjxgn6","type":"string"},"environmentName":{"value":"wabrez-ai-hoolis","type":"string"},"keyVaultName":{"value":"kv-3erlnu6mjxgn6","type":"string"},"location":{"value":"eastus2","type":"string"},"logAnalyticsWorkspaceName":{"value":"log-3erlnu6mjxgn6","type":"string"},"openAiName":{"value":"aoai-3erlnu6mjxgn6","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"resourceGroupName":{"value":"rg-wabrez-ai-hoolis","type":"string"},"searchServiceName":{"value":"","type":"string"},"storageAccountName":{"value":"st3erlnu6mjxgn6","type":"string"},"useApplicationInsights":{"value":true,"type":"bool"},"useContainerRegistry":{"value":true,"type":"bool"},"useSearch":{"value":true,"type":"bool"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Insights/components/appi-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Search/searchServices/srch-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.KeyVault/vaults/kv-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/fileServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/blobServices/default/containers/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/queueServices/default/queues/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/queueServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/tableServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.OperationalInsights/workspaces/log-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.ContainerRegistry/registries/cr3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/14a589df-0bef-5ec2-85ea-34da2b3fb1ba"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/cef31f72-1a5c-556c-8503-e621db582c76"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/cfea18d2-cab8-51d0-ad82-e513a2f9e4e6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/6c087706-b9af-5cac-98f2-1b286b4cc1cb"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.CognitiveServices/accounts/aoai-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.KeyVault/vaults/kv-3erlnu6mjxgn6/accessPolicies/add"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/connections/aoai-connection"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/connections/aoai-content-safety-connection"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/connections/search-service-connection"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/providers/Microsoft.Authorization/roleAssignments/3ca2c4c7-4251-5e81-96b0-9edcda209c84"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6/onlineEndpoints/mloe-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6/onlineEndpoints/mloe-3erlnu6mjxgn6/providers/Microsoft.Authorization/roleAssignments/1e4f9fa9-cc15-542d-9850-5e3bcea5192d"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6/providers/Microsoft.Authorization/roleAssignments/13a87445-b92b-5b0d-bd9f-7ceb1f35ca13"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/960a1f2e-3ce8-58c6-872a-923ba825c874"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/d86b2af1-77da-593f-8d2a-b86b61680c22"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/1edaf4c4-2278-5ff4-8b91-3923401a47a0"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/a9ca5272-e2ea-5fd8-b84a-ddbac4c905d8"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/1edaf4c4-2278-5ff4-8b91-3923401a47a0","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/1edaf4c4-2278-5ff4-8b91-3923401a47a0"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/a9ca5272-e2ea-5fd8-b84a-ddbac4c905d8","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/a9ca5272-e2ea-5fd8-b84a-ddbac4c905d8"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''65cf1f5af437064350d220247d2a2b21''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"65cf1f5af437064350d220247d2a2b21"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-11-06T20:09:11.7312357Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-03T22:11:37.0772913Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-ai-hoolis","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-ai-hoolis"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-azd-search-demo","azd-provision-param-hash":"3c08e868459dbd4c5aff6540e3aea41bb3f432921e9cbf31f4b900b851e933c2","azd-provision-template-hash":"3797412539320313459"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-azd-search-demo-24111419byz6e","duration":"PT3M26.9375345S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_AUTH_TENANT_ID":{"type":"String","value":""},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"openaI_HOST":{"type":"String","value":"azure"},"azurE_OPENAI_EMB_MODEL_NAME":{"type":"String","value":"text-embedding-ada-002"},"azurE_OPENAI_CHATGPT_MODEL":{"type":"String","value":"gpt-35-turbo"},"azurE_OPENAI_GPT4V_MODEL":{"type":"String","value":"gpt-4o"},"azurE_OPENAI_SERVICE":{"type":"String","value":"cog-jnpurrdbdxfms"},"azurE_OPENAI_API_VERSION":{"type":"String","value":""},"azurE_OPENAI_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_OPENAI_CHATGPT_DEPLOYMENT":{"type":"String","value":"chat"},"azurE_OPENAI_EMB_DEPLOYMENT":{"type":"String","value":"embedding"},"azurE_OPENAI_GPT4V_DEPLOYMENT":{"type":"String","value":"gpt-4o"},"azurE_SPEECH_SERVICE_ID":{"type":"String","value":""},"azurE_SPEECH_SERVICE_LOCATION":{"type":"String","value":""},"azurE_VISION_ENDPOINT":{"type":"String","value":""},"azurE_DOCUMENTINTELLIGENCE_SERVICE":{"type":"String","value":"cog-di-jnpurrdbdxfms"},"azurE_DOCUMENTINTELLIGENCE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_SEARCH_INDEX":{"type":"String","value":"azd"},"azurE_SEARCH_SERVICE":{"type":"String","value":"gptkb-jnpurrdbdxfms"},"azurE_SEARCH_SERVICE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_SEARCH_SEMANTIC_RANKER":{"type":"String","value":"free"},"azurE_SEARCH_SERVICE_ASSIGNED_USERID":{"type":"String","value":"0432371a-a7e9-44b3-8da0-1e0ae055d006"},"azurE_COSMOSDB_ACCOUNT":{"type":"String","value":""},"azurE_CHAT_HISTORY_DATABASE":{"type":"String","value":"chat-database"},"azurE_CHAT_HISTORY_CONTAINER":{"type":"String","value":"chat-history"},"azurE_STORAGE_ACCOUNT":{"type":"String","value":"stjnpurrdbdxfms"},"azurE_STORAGE_CONTAINER":{"type":"String","value":"azd"},"azurE_STORAGE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_USERSTORAGE_ACCOUNT":{"type":"String","value":""},"azurE_USERSTORAGE_CONTAINER":{"type":"String","value":"user-content"},"azurE_USERSTORAGE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_USE_AUTHENTICATION":{"type":"Bool","value":false},"backenD_URI":{"type":"String","value":"https://capps-backend-jnpurrdbdxfms.victoriousbush-a334bb99.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"wabrezazdsearchdemoacrjnpurrdbdxfms.azurecr.io"}},"parameters":{"appServiceSkuName":{"value":"B1","type":"string"},"azureContainerAppsWorkloadProfile":{"value":"Consumption","type":"string"},"bypass":{"value":"AzureServices","type":"string"},"chatGptDeploymentName":{"value":"chat","type":"string"},"chatGptModelName":{"value":"gpt-35-turbo","type":"string"},"computerVisionResourceGroupLocation":{"value":"eastus","type":"string"},"computerVisionSkuName":{"value":"S1","type":"string"},"cosmosDbSkuName":{"value":"serverless","type":"string"},"deploymentTarget":{"value":"containerapps","type":"string"},"disableAppServicesAuthentication":{"value":false,"type":"bool"},"documentIntelligenceResourceGroupLocation":{"value":"eastus","type":"string"},"documentIntelligenceResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"documentIntelligenceServiceName":{"value":"cog-di-jnpurrdbdxfms","type":"string"},"documentIntelligenceSkuName":{"value":"S0","type":"string"},"embeddingDeploymentName":{"value":"embedding","type":"string"},"embeddingModelName":{"value":"text-embedding-ada-002","type":"string"},"enableGlobalDocuments":{"value":false,"type":"bool"},"enableLanguagePicker":{"value":false,"type":"bool"},"enableUnauthenticatedAccess":{"value":false,"type":"bool"},"enforceAccessControl":{"value":false,"type":"bool"},"environmentName":{"value":"wabrez-azd-search-demo","type":"string"},"gpt4vDeploymentName":{"value":"gpt-4o","type":"string"},"gpt4vModelName":{"value":"gpt-4o","type":"string"},"location":{"value":"eastus2","type":"string"},"openAiHost":{"value":"azure","type":"string"},"openAiResourceGroupLocation":{"value":"eastus2","type":"string"},"openAiResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"openAiServiceName":{"value":"cog-jnpurrdbdxfms","type":"string"},"openAiSkuName":{"value":"S0","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"publicNetworkAccess":{"value":"Enabled","type":"string"},"resourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"searchIndexName":{"value":"azd","type":"string"},"searchQueryLanguage":{"value":"en-us","type":"string"},"searchQuerySpeller":{"value":"lexicon","type":"string"},"searchServiceName":{"value":"gptkb-jnpurrdbdxfms","type":"string"},"searchServiceResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"searchServiceSemanticRankerLevel":{"value":"free","type":"string"},"searchServiceSkuName":{"value":"basic","type":"string"},"speechServiceSkuName":{"value":"S0","type":"string"},"storageAccountName":{"value":"stjnpurrdbdxfms","type":"string"},"storageContainerName":{"value":"azd","type":"string"},"storageResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"storageSkuName":{"value":"Standard_LRS","type":"string"},"useApplicationInsights":{"value":true,"type":"bool"},"useAuthentication":{"value":false,"type":"bool"},"useChatHistoryBrowser":{"value":false,"type":"bool"},"useChatHistoryCosmos":{"value":false,"type":"bool"},"useGPT4V":{"value":false,"type":"bool"},"usePrivateEndpoint":{"value":false,"type":"bool"},"useSpeechInputBrowser":{"value":false,"type":"bool"},"useSpeechOutputAzure":{"value":false,"type":"bool"},"useSpeechOutputBrowser":{"value":false,"type":"bool"},"useVectors":{"value":true,"type":"bool"},"webAppExists":{"value":false,"type":"bool"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.App/containerApps/capps-backend-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.App/managedEnvironments/wabrez-azd-search-demo-aca-env"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/02b3095c-ac38-5f1b-8fa5-c35023b21dcd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/0935b144-e48e-546b-9eed-f077eccd1786"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/0ed24f40-208f-5263-9b98-963a672bd676"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/1f3e713f-06c3-5a57-97d6-c172c8f4c08c"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/3a4705f7-ca27-5bfe-8ddb-b4731908255c"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/8d8e0651-00db-54ba-aef1-7687839835a0"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/92cc4b77-3ad4-5321-9ce6-f329e0d13224"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/b84dafdc-58af-59b5-8472-d71d93ed75c1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/bdf589b2-178c-5067-b1c7-bb6f8e2aa9f7"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/be486ea1-4311-54a3-ad9a-9a91a90428e8"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/d551f488-8c05-5f22-b539-9b6cf682d27e"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/ea32d44d-769d-5340-a7d1-88ae5bbdca98"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-di-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-jnpurrdbdxfms/deployments/chat"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-jnpurrdbdxfms/deployments/embedding"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.ContainerRegistry/registries/wabrezazdsearchdemoacrjnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.ContainerRegistry/registries/wabrezazdsearchdemoacrjnpurrdbdxfms/providers/Microsoft.Authorization/roleAssignments/1e4e6094-56d9-5771-9b67-25a3260c9e5d"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Insights/components/appi-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wabrez-azd-search-demo-aca-identity"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.OperationalInsights/workspaces/log-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Portal/dashboards/dash-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Search/searchServices/gptkb-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Search/searchServices/gptkb-jnpurrdbdxfms/providers/Microsoft.Insights/diagnosticSettings/gptkb-jnpurrdbdxfms-diagnostics"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms/blobServices/default/containers/azd"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms/blobServices/default/containers/content"}],"failedResources":[],"correlationId":"976dda5cc09ffd8cc6bceba54f35c287"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-11-14T16:54:02.4438726Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-14T19:40:53.09928Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-azd-search-demo","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-azd-search-demo"},{"location":"eastus2","tags":{"azd-env-name":"mhhh","azd-provision-param-hash":"b26315bc14dc989a8ac6801fc21f0b7d3a2e361b9331830bf3a3ddabb579289f","azd-provision-template-hash":"13275230192125173794"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mhhh-25022605ey1lx","duration":"PT35M58.0974594S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"d49f923c-75c3-4db6-bd3f-9ac06a937698"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-ndwnj3ao2bihc"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-ndwnj3ao2bihc"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrndwnj3ao2bihc.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-ndwnj3ao2bihc"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrndwnj3ao2bihc"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-ndwnj3ao2bihc"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"gentlepond-871ea8b7.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mhhh","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc/providers/Microsoft.Authorization/roleAssignments/604e9f53-8987-55ce-8aab-edf674352a70"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ContainerRegistry/registries/acrndwnj3ao2bihc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ContainerRegistry/registries/acrndwnj3ao2bihc/providers/Microsoft.Authorization/roleAssignments/6988ea97-ecac-5158-b09e-b2a00d62773d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-ndwnj3ao2bihc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.OperationalInsights/workspaces/law-ndwnj3ao2bihc"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-ndwnj3ao2bihc cannot be deleted because it still contains 2 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''283a3d35a9a0b02c878b2630945103fe''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"283a3d35a9a0b02c878b2630945103fe"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-26T05:51:03.9231403Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T05:51:03.9231403Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mhhh","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mhhh"},{"location":"eastus2","tags":{"azd-env-name":"mhddd","azd-provision-param-hash":"572efce0c790e064d18ab4ef53aed87350a3ff97ec463d07dffd6a6f340af005","azd-provision-template-hash":"13275230192125173794"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mhddd-25022605fpfn2","duration":"PT31M14.2983365S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"e70583af-5536-4ba6-b416-cd394c970be8"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-kyfclh6bvypzq"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-kyfclh6bvypzq"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrkyfclh6bvypzq.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-kyfclh6bvypzq"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrkyfclh6bvypzq"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-kyfclh6bvypzq"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"lemoncliff-69351c12.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mhddd","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq/providers/Microsoft.Authorization/roleAssignments/2756bb89-417e-5672-aa1b-b982b11349e4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ContainerRegistry/registries/acrkyfclh6bvypzq"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ContainerRegistry/registries/acrkyfclh6bvypzq/providers/Microsoft.Authorization/roleAssignments/3729a5d7-b6cb-535a-bef2-3986a41fbc69"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-kyfclh6bvypzq"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.OperationalInsights/workspaces/law-kyfclh6bvypzq"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-kyfclh6bvypzq cannot be deleted because it still contains 2 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''ad4f627a6c862fca65212cd4d70ea317''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"ad4f627a6c862fca65212cd4d70ea317"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-26T05:53:39.6448477Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T05:53:39.6448477Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mhddd","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mhddd"},{"location":"eastus2","tags":{"azd-env-name":"mhbbb","azd-provision-param-hash":"d07d8376b3967f7319274c965e1e1933c528a1eb02d9f74a27ab0f14334bb1d3","azd-provision-template-hash":"7751854598740409575"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mhbbb-25022605fv1xu","duration":"PT31M18.0312503S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"34bd6f4b-9564-494d-9d01-1d505b1688f9"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-eikdrszsumew4"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-eikdrszsumew4"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acreikdrszsumew4.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-eikdrszsumew4"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acreikdrszsumew4"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-eikdrszsumew4"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"politeforest-b230409b.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mhbbb","type":"string"},"goversion":{"value":"1.22","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4/providers/Microsoft.Authorization/roleAssignments/7d061f4e-4247-5380-919c-b9f27c58ef06"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ContainerRegistry/registries/acreikdrszsumew4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ContainerRegistry/registries/acreikdrszsumew4/providers/Microsoft.Authorization/roleAssignments/1ebfbf86-4e11-5e6e-ab1b-d9ba9fdeb0f5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-eikdrszsumew4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.OperationalInsights/workspaces/law-eikdrszsumew4"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-eikdrszsumew4 cannot be deleted because it still contains 1 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''409eeaadbd179a5572523b7dd5352c26''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"409eeaadbd179a5572523b7dd5352c26"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-26T05:54:11.7928133Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T05:54:11.7928133Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mhbbb","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mhbbb"},{"location":"eastus2","tags":{"azd-env-name":"mh2","azd-provision-param-hash":"3c3f5a8f918e5ce850e58eca4304958a850ee1b6e4384628e44b0b50c2d7de7e","azd-provision-template-hash":"357129416473313743"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mh2-25022702f9gw0","duration":"PT2M19.50483S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}},"parameters":{"environmentName":{"value":"mh2","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/3335baf5-b641-58ee-9fc6-5854aa3724c0"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/35953083-2141-5c3a-a1e2-3fcd68454f42"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/3a17180f-e2e6-521f-ba5d-e946b505e6b0"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/61f4fb2e-eb8c-5e77-9217-0e0f40e4ba89"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/768ff0ee-a766-5302-9369-9329d982b006"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/7ffb4460-db8a-5d16-9fca-7752de5eb862"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/d4b3de2a-7c5b-5257-a200-21b5adc01edd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/catalogs/Example"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/environmentTypes/Dev"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/environmentTypes/Prod"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/environmentTypes/Test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/providers/Microsoft.Insights/diagnosticSettings/logs"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Dev"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Prod"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/providers/Microsoft.Authorization/roleAssignments/cdd969d8-5219-5ca6-858a-909f82596155"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Dev"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Prod"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/providers/Microsoft.Authorization/roleAssignments/6218bd55-f3c3-5831-b14e-50a44658b34a"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.OperationalInsights/workspaces/law-ygvsyzyfgq7xy"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"7f12b5558bb5d3e49aee5743dc3a04db"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-27T02:52:08.7360368Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T02:52:08.7360368Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mh2","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mh2"},{"location":"eastus2","tags":{"azd-env-name":"mh8","azd-provision-param-hash":"958d658304adad0a0c4843c201118547045290fdbefd97e495e5c2e9f2200266","azd-provision-template-hash":"13275230192125173794"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mh8-25031208ebeko","duration":"PT1H2M54.6068916S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"4d76c092-69b4-4fdf-ad87-4ac73a4bfa17"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-bdkvro7p47j7o"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-bdkvro7p47j7o"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrbdkvro7p47j7o.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-bdkvro7p47j7o"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrbdkvro7p47j7o"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-bdkvro7p47j7o"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"proudcoast-4924119a.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mh8","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o/providers/Microsoft.Authorization/roleAssignments/db0093fa-1620-523d-bf14-25e924e61d61"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ContainerRegistry/registries/acrbdkvro7p47j7o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ContainerRegistry/registries/acrbdkvro7p47j7o/providers/Microsoft.Authorization/roleAssignments/eba66cea-8436-50a0-8692-a9e465b565bf"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-bdkvro7p47j7o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.OperationalInsights/workspaces/law-bdkvro7p47j7o"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-bdkvro7p47j7o cannot be deleted because it still contains 1 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''b88d09fe2ff8d9a501fba2958ccf7c6f''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"b88d09fe2ff8d9a501fba2958ccf7c6f"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-03-12T08:48:55.0398907Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-12T08:48:55.0398907Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mh8","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mh8"},{"location":"eastus2","tags":{"azd-env-name":"azdtest-da768f3","azd-provision-param-hash":"53f961664156ef5d1861b6246896e3e21d9bbc59cf310fb08e23df6b96d69b13","azd-provision-template-hash":"15213980796692521993"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-da768f3-250825214wc40","duration":"PT1H59.920463S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3/providers/Microsoft.Storage/storageAccounts/stsp32mmu6ymy5e"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stsp32mmu6ymy5e"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"azdtest-da768f3","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"eastus2","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3/providers/Microsoft.Storage/storageAccounts/stsp32mmu6ymy5e"}],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''df816bab2783ae3a4b3f2500ca9767fa''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"df816bab2783ae3a4b3f2500ca9767fa"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-25T21:16:43.4932047Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-25T21:16:43.4932047Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-da768f3","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-da768f3"},{"location":"eastus2","tags":{"azd-env-name":"azdtest-dfe1ec5","azd-provision-param-hash":"1fe3797ccf544eeb7dd83ec3f4d1b85d6f6e8bb6b5b77b9c1c36a61f30692888","azd-provision-template-hash":"15213980796692521993"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-dfe1ec5-250825218irqt","duration":"PT1H1M12.6561673S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5/providers/Microsoft.Storage/storageAccounts/st7y7iw65cvkmco"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st7y7iw65cvkmco"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"azdtest-dfe1ec5","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"eastus2","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5/providers/Microsoft.Storage/storageAccounts/st7y7iw65cvkmco"}],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''8618b6ec94d10d17d3544a97d64879fb''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"8618b6ec94d10d17d3544a97d64879fb"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-25T21:29:06.8870876Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-25T21:29:06.8870876Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-dfe1ec5","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-dfe1ec5"},{"location":"westus3","tags":{"azd-env-name":"weilim-contoso","azd-provision-param-hash":"67e51988a40dfe0260d1f3b156a9e44055ac6efb3aea96d98d41eb9a65413c35","azd-provision-template-hash":"9645266646719847105"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-contoso-25031223cejn6","duration":"PT55.7402577S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"environmentName":{"value":"weilim-contoso","type":"string"},"location":{"value":"westus3","type":"string"},"openAiApiVersion":{"value":"2023-07-01-preview","type":"string"},"openAiDeploymentName":{"value":"gpt-4o-mini","type":"string"},"openAiEmbeddingDeploymentName":{"value":"text-embedding-ada-002","type":"string"},"principalId":{"value":"43bb7435-f8c4-4342-9788-fd15e454ea12","type":"string"},"useApplicationInsights":{"value":true,"type":"bool"},"useContainerRegistry":{"value":true,"type":"bool"},"useSearch":{"value":true,"type":"bool"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/5938f9db-3921-56e6-a2df-85b4e77161cd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/c95954f3-085c-5362-9822-041459b53d53"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/11c4862a-d1c7-565e-ba0f-66a79239ffcd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Insights/components/appi-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.KeyVault/vaults/kv-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/queueServices/default/queues/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/fileServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/queueServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/blobServices/default/containers/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/tableServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.OperationalInsights/workspaces/log-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.ContainerRegistry/registries/crhbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/638c1997-8e6e-5ad2-849e-054921610572"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/5bc2d8c8-06b7-5bf7-8ad6-a1cefc2e3d2a"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/6946675a-d185-5357-838e-c7dd137c6a6b"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/6d058cae-2ce0-560c-8411-ea4492f5ca2b"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceDeploymentCancelled","message":"The resource deployment was cancelled."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-contoso-hbyydiyhbi2dk"},{"error":{"code":"ResourceDeploymentCancelled","message":"The resource deployment was cancelled."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.CognitiveServices/accounts/aoai-hbyydiyhbi2dk"},{"error":{"code":"StampNotFound","message":"SKU ''standard'' cannot be provisioned in ''westus3'' at this time RequestId: e37d0201-14d3-433e-4e04-cc081e880526"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Search/searchServices/srch-hbyydiyhbi2dk"}],"error":{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed. Correlation id: ''e37d020114d3433e4e04cc081e880526''.","details":[{"code":"DeploymentFailed","message":"Could not deploy the specified template successfully. DeploymentId ''/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-contoso-25031223cejn6'' was canceled."}]},"correlationId":"e37d020114d3433e4e04cc081e880526"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-03-12T23:42:22.7965066Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-12T23:42:22.7965066Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-contoso","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-contoso"},{"location":"westus3","tags":{"azd-env-name":"weilim-stgds","azd-provision-param-hash":"f8159dee115136db44fb87d9207ec71087a4b6c06f92b63ed46040234262ef34","azd-provision-template-hash":"15213980796692521993"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-stgds-250825220o2h8","duration":"PT1H7M39.7324635S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds/providers/Microsoft.Storage/storageAccounts/stktq6doertscuu"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stktq6doertscuu"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"weilim-stgds","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"westus3","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds/providers/Microsoft.Storage/storageAccounts/stktq6doertscuu"}],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''18727d622f36209fc4545bf0f99df0c7''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"18727d622f36209fc4545bf0f99df0c7"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-25T22:02:16.8342555Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-25T22:02:16.8342555Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-stgds","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-stgds"},{"location":"westus3","tags":{"azd-env-name":"weilim-separate","azd-layer-name":"","azd-provision-param-hash":"5a7ddbced9794c8e5adcc7858c046a8d11fe79c5f12d644da9059df055a453c8","azd-provision-template-hash":"14439921980320776419"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-separate-250912209f268","duration":"PT1M55.9118193S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cr5ffc5gcbss5ty"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-5ffc5gcbss5ty"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cr5ffc5gcbss5ty.azurecr.io"}},"parameters":{"environmentName":{"value":"weilim-separate","type":"string"},"location":{"value":"westus3","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate/providers/Microsoft.App/managedEnvironments/cae-5ffc5gcbss5ty"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate/providers/Microsoft.ContainerRegistry/registries/cr5ffc5gcbss5ty"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate/providers/Microsoft.OperationalInsights/workspaces/log-5ffc5gcbss5ty"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"376e560958e1fb87245641030490b486"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-27T19:25:31.8205068Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-12T20:32:10.979566Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-separate","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-separate"},{"location":"westus3","tags":{"azd-env-name":"weilim-test","azd-provision-param-hash":"195be2ae46fde8674cb7b4f87680378e1787a04165049eced249f0563a34911b","azd-provision-template-hash":"12347849690477709533"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-test-250909235u2q8","duration":"PT2M16.7332149S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crvfutwedbxmy32"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-vfutwedbxmy32"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crvfutwedbxmy32.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-vfutwedbxmy32.whitebush-6158fb4c.westus3.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"weilim-test","type":"string"},"location":{"value":"westus3","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.App/containerApps/ca-vfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.App/managedEnvironments/cae-vfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.ContainerRegistry/registries/crvfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.ContainerRegistry/registries/crvfutwedbxmy32/providers/Microsoft.Authorization/roleAssignments/eb6f4479-e7df-5759-b1db-7ab5cd7dfcbc"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-vfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.OperationalInsights/workspaces/log-vfutwedbxmy32"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"e4a307b3e0b737dd13cb20eefadbc695"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-09-09T23:19:55.5331394Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-09T23:19:55.5331394Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-test","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-test"},{"location":"westus3","tags":{"azd-env-name":"weilim-funcman","azd-layer-name":"asd","azd-provision-param-hash":"3749ac62dc30e3ee2e67988c9b4d844ed23c92ebd45f7b1a96be67c7e7eb6320","azd-provision-template-hash":"11038868313691392576"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-funcman-asd-250911225up7h","duration":"PT47.570476S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_RESOURCE_COMPOSE_GPT_4O_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman/providers/Microsoft.CognitiveServices/accounts/cog-3zj267mjuv3je/deployments/compose-gpt-4o"}},"parameters":{"environmentName":{"value":"weilim-funcman","type":"string"},"location":{"value":"westus3","type":"string"},"principalId":{"value":"43bb7435-f8c4-4342-9788-fd15e454ea12","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman/providers/Microsoft.CognitiveServices/accounts/cog-3zj267mjuv3je"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman/providers/Microsoft.CognitiveServices/accounts/cog-3zj267mjuv3je/deployments/compose-gpt-4o"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"165adf1b30122f701613d8114e672d1c"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-09-11T22:20:00.0223678Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-11T22:20:00.0223678Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-funcman-asd","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-funcman-asd"}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "114513" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:32:50 GMT + - Thu, 09 Apr 2026 18:14:49 GMT Expires: - "-1" Pragma: @@ -125,37 +125,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/b753b426-5228-48d8-b1cd-7714e78743c7 - X-Ms-Original-Request-Ids: - - 90da3812-ca86-484b-84ff-3f5eee2bcbbc - - c210be47-5ddb-4128-a515-9cdc275c33f9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/35e46e29-6f25-4030-8fda-f2e44418aca4 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - eb9c1dde-0fb2-473a-bb96-d4a77f50f59a + - 1ab15369-4714-4722-a757-b04ae263a14c X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223250Z:eb9c1dde-0fb2-473a-bb96-d4a77f50f59a + - EASTUS2:20260409T181450Z:1ab15369-4714-4722-a757-b04ae263a14c X-Msedge-Ref: - - 'Ref A: A4E5532E215D4440BD992910A6ED024F Ref B: MWH011020809042 Ref C: 2026-01-05T22:32:49Z' + - 'Ref A: 51BC789D20C64486B12F472C477D19C4 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:14:49Z' status: 200 OK code: 200 - duration: 299.8206ms + duration: 74.653125ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4022 + content_length: 4546 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"8438524736352338141"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' form: {} headers: Accept: @@ -165,13 +162,13 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4022" + - "4546" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -180,18 +177,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4542 + content_length: 5122 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"9492071610990153753\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"8438524736352338141\"}}}","templateHash":"8438524736352338141"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"6602963692698314495\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"4488259817381607990\"}}}","templateHash":"4488259817381607990"}' headers: Cache-Control: - no-cache Content-Length: - - "4542" + - "5122" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:32:50 GMT + - Thu, 09 Apr 2026 18:14:51 GMT Expires: - "-1" Pragma: @@ -203,30 +200,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - e5a9f6a3-20b9-4344-a64d-62d80e232c44 + - 13cbd5e0-c30a-428d-9751-13fa15678964 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223250Z:e5a9f6a3-20b9-4344-a64d-62d80e232c44 + - EASTUS2:20260409T181451Z:13cbd5e0-c30a-428d-9751-13fa15678964 X-Msedge-Ref: - - 'Ref A: 164DE4FACADC42298398EBDC6272747F Ref B: MWH011020809042 Ref C: 2026-01-05T22:32:50Z' + - 'Ref A: 4B66EAA472B9458B9D4A05FD41CBFF44 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:14:51Z' status: 200 OK code: 200 - duration: 53.8538ms + duration: 93.683792ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4618 + content_length: 5142 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w4abfd7"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"value":""}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"8438524736352338141"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-w4abfd7","azd-layer-name":"","azd-provision-param-hash":"94f737637b068d81feb5eddf882ffc6d0f1aee3e94e2ec426e8b61580c00e907","azd-provision-template-hash":"8438524736352338141"}}' + body: '{"location":"eastus2","properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-d155b60"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"value":""}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d155b60","azd-layer-name":"","azd-provision-param-hash":"6a82f05f67efe7ecbf7a645b02e758abe7b8f6645f44c26e1de22b5b9b567c47","azd-provision-template-hash":"4488259817381607990"}}' form: {} headers: Accept: @@ -236,14 +233,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4618" + - "5142" Content-Type: - application/json User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7/validate?api-version=2024-03-01 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60/validate?api-version=2024-03-01 method: POST response: proto: HTTP/2.0 @@ -260,11 +257,11 @@ interactions: Content-Length: - "0" Date: - - Mon, 05 Jan 2026 22:32:50 GMT + - Thu, 09 Apr 2026 18:14:51 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOjgyZWJhYjNhOjJENGIwOToyRDQyZGY6MkQ4NWM2OjJENDY5YzIwNzVmYmMxIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639032491705175794&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=dXvGOjha6eVVFRKt-spbXJTeE2oxp3qbVKvEgc5V9NHJZOe7Ge27RP4nwPOPlt0KWtFgNT6qcnOg47uj_LyFIHYL1RgR47kUIzwqqlnLV263R-lj9v6FoA5P9FKbfe9PrXLqmnr6-SRfezNK7r31oqWUV5hRUqoQRseOcEl-0nTcbZMgGQue3B-oOxYb0DYgpNVcRLyIgFtnO5lIO3-soHSoXhjY5-GfcJzLxgp0Awx8LyaYePrcAGzX_ArXSpTEf4OLtIwymC__32m7iJ3PS9nWtRKSeq-QolMnbuF3EKuYZf5i2D9xmB8Y3DU277iHVtKVrzc5dqYXhrIbYgtGPA&h=G2altS8s881BNQgDsnZIaZFUPTWXqSh4tFsrwEW4gtE + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOjQ2NzY0MGE2OjJEZTRlNToyRDQ4YzQ6MkRhZDVlOjJEZmMwZmNhMGVlZmQ0Iiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639113553220752255&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=pzesP0LuE-yf9fl-uJoVm5kHo82mDd6s0XHidCTPjvZaT6oaeLd6ZpDRUTqQvY_nplyIBxFZuwnlTGyK1KTAlyI-FRW28DKlv11jUuE5U9lrevy1se8NmVlUxQBq53jmvBLZ2WgDJ3BepL1gw4QatULSpE7mYvjhYxsqnLBgKdfi9l-CsXMfRt-f6GCCzpmF7Qc28poXl-NTqAyvJbMOuZMeovviW-EQ02LsGJcE7XHOjfI62hcDmmCSYuqKFfUowg0bwNHZ5SnBwq_Aiqp0Iqpzp4bD-B0BpSta9Q7VJDMwMDSGB1pHSNAHU5d2S8uRoU6DT8DslHxtO3lz_b4hwA&h=H6IUbeRdlufnqd8j7kPDfpHs8Z_T5hP1WR5XtcZ44LA Pragma: - no-cache Retry-After: @@ -276,22 +273,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/1c798d13-b3ac-4f86-9efb-2d013a8dbd3c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/4312e3a7-f1ec-466d-b955-72987d4e874b X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 110cc0cc-f253-423f-b134-d7e19b8293ac + - 3d950f95-bbda-49e8-9b24-fdbf883a6fe2 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223250Z:781b1289-15f4-4062-aba5-e81809f8b018 + - EASTUS:20260409T181451Z:2708eabe-4022-45b2-aff5-09a2e5b56819 X-Msedge-Ref: - - 'Ref A: A772531026A74CBE9100534D8C3AF9E2 Ref B: MWH011020809042 Ref C: 2026-01-05T22:32:50Z' + - 'Ref A: 7CA9367887994A678846E9C63FE1C65D Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:14:51Z' status: 202 Accepted code: 202 - duration: 332.7855ms + duration: 224.77425ms - id: 4 request: proto: HTTP/1.1 @@ -311,10 +308,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOjgyZWJhYjNhOjJENGIwOToyRDQyZGY6MkQ4NWM2OjJENDY5YzIwNzVmYmMxIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639032491705175794&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=dXvGOjha6eVVFRKt-spbXJTeE2oxp3qbVKvEgc5V9NHJZOe7Ge27RP4nwPOPlt0KWtFgNT6qcnOg47uj_LyFIHYL1RgR47kUIzwqqlnLV263R-lj9v6FoA5P9FKbfe9PrXLqmnr6-SRfezNK7r31oqWUV5hRUqoQRseOcEl-0nTcbZMgGQue3B-oOxYb0DYgpNVcRLyIgFtnO5lIO3-soHSoXhjY5-GfcJzLxgp0Awx8LyaYePrcAGzX_ArXSpTEf4OLtIwymC__32m7iJ3PS9nWtRKSeq-QolMnbuF3EKuYZf5i2D9xmB8Y3DU277iHVtKVrzc5dqYXhrIbYgtGPA&h=G2altS8s881BNQgDsnZIaZFUPTWXqSh4tFsrwEW4gtE + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationResults/eyJqb2JJZCI6IlByZWZsaWdodFN0YWNrSm9iOjQ2NzY0MGE2OjJEZTRlNToyRDQ4YzQ6MkRhZDVlOjJEZmMwZmNhMGVlZmQ0Iiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2024-03-01&t=639113553220752255&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=pzesP0LuE-yf9fl-uJoVm5kHo82mDd6s0XHidCTPjvZaT6oaeLd6ZpDRUTqQvY_nplyIBxFZuwnlTGyK1KTAlyI-FRW28DKlv11jUuE5U9lrevy1se8NmVlUxQBq53jmvBLZ2WgDJ3BepL1gw4QatULSpE7mYvjhYxsqnLBgKdfi9l-CsXMfRt-f6GCCzpmF7Qc28poXl-NTqAyvJbMOuZMeovviW-EQ02LsGJcE7XHOjfI62hcDmmCSYuqKFfUowg0bwNHZ5SnBwq_Aiqp0Iqpzp4bD-B0BpSta9Q7VJDMwMDSGB1pHSNAHU5d2S8uRoU6DT8DslHxtO3lz_b4hwA&h=H6IUbeRdlufnqd8j7kPDfpHs8Z_T5hP1WR5XtcZ44LA method: GET response: proto: HTTP/2.0 @@ -322,18 +319,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1867 + content_length: 2062 uncompressed: false - body: "{\r\n \"properties\": {\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Resources/deployments/resources\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk\"\r\n }\r\n ],\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"Delete\",\r\n \"resourceGroups\": \"Delete\",\r\n \"managementGroups\": \"Delete\",\r\n \"resourcesWithoutDeleteSupport\": \"Fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"None\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"type\": \"String\",\r\n \"value\": \"azdtest-w4abfd7\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"eastus2\"\r\n },\r\n \"deleteAfterTime\": {\r\n \"type\": \"String\",\r\n \"value\": \"2026-01-05T23:32:53Z\"\r\n },\r\n \"intTagValue\": {\r\n \"type\": \"Int\",\r\n \"value\": 678\r\n },\r\n \"boolTagValue\": {\r\n \"type\": \"Bool\",\r\n \"value\": false\r\n },\r\n \"secureValue\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"secureObject\": {\r\n \"type\": \"SecureObject\"\r\n },\r\n \"nullableParam\": {\r\n \"type\": \"String\",\r\n \"value\": null\r\n }\r\n },\r\n \"correlationId\": \"b65a256a323433d1605771aeac2eda3d\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w4abfd7\"\r\n}" + body: "{\r\n \"properties\": {\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Resources/deployments/resources\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu\"\r\n }\r\n ],\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"Delete\",\r\n \"resourceGroups\": \"Delete\",\r\n \"managementGroups\": \"Delete\",\r\n \"resourcesWithoutDeleteSupport\": \"Fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"None\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"environmentName\": {\r\n \"type\": \"String\",\r\n \"value\": \"azdtest-d155b60\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"eastus2\"\r\n },\r\n \"deleteAfterTime\": {\r\n \"type\": \"String\",\r\n \"value\": \"2026-04-09T19:14:52Z\"\r\n },\r\n \"intTagValue\": {\r\n \"type\": \"Int\",\r\n \"value\": 678\r\n },\r\n \"boolTagValue\": {\r\n \"type\": \"Bool\",\r\n \"value\": false\r\n },\r\n \"secureValue\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"secureObject\": {\r\n \"type\": \"SecureObject\"\r\n },\r\n \"arrayValue\": {\r\n \"type\": \"Array\",\r\n \"value\": []\r\n },\r\n \"objectValue\": {\r\n \"type\": \"Object\",\r\n \"value\": {}\r\n },\r\n \"nullableParam\": {\r\n \"type\": \"String\",\r\n \"value\": null\r\n }\r\n },\r\n \"deploymentExtensions\": [],\r\n \"correlationId\": \"28cde718a413bc295ce592e23cd41fb2\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d155b60\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "1867" + - "2062" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:05 GMT + - Thu, 09 Apr 2026 18:15:37 GMT Expires: - "-1" Pragma: @@ -345,34 +342,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/03ad6133-4055-449d-892b-0ca91fa43008 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/f872c011-b168-4978-b5fe-1716f2f5c4b9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 45812d4d-86f0-40eb-a20b-1d28125fab7e + - 1e30ce88-9c3d-419c-bb6e-d8b9f4326915 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223305Z:7e1fb1d0-c853-49f7-9c47-9a004636e0ba + - EASTUS:20260409T181537Z:7b1763c4-a7b3-4619-b348-f65f70a9766d X-Msedge-Ref: - - 'Ref A: F3DFCDD7CC4E4EE89FF6D041CC1BDABA Ref B: MWH011020809042 Ref C: 2026-01-05T22:33:05Z' + - 'Ref A: 3C7AAD3A4FC74A7A8702EF4890628C2E Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:15:37Z' status: 200 OK code: 200 - duration: 350.5682ms + duration: 124.67475ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4022 + content_length: 4546 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"8438524736352338141"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}' form: {} headers: Accept: @@ -382,13 +379,13 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4022" + - "4546" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -397,18 +394,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4542 + content_length: 5122 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"9492071610990153753\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.39.26.7824\",\"TEMPLATEHASH\":\"8438524736352338141\"}}}","templateHash":"8438524736352338141"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"LANGUAGEVERSION\":\"2.0\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"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\":{\"DEFAULTVALUE\":\"[DATETIMEADD(UTCNOW(''O''), ''PT1H'')]\",\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"A TIME TO MARK ON CREATED RESOURCE GROUPS, SO THEY CAN BE CLEANED UP VIA AN AUTOMATED PROCESS.\"}},\"INTTAGVALUE\":{\"TYPE\":\"INT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR INT-TYPED VALUES.\"}},\"BOOLTAGVALUE\":{\"TYPE\":\"BOOL\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR BOOL-TYPED VALUES.\"}},\"SECUREVALUE\":{\"TYPE\":\"SECURESTRING\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECURESTRING-TYPED VALUES.\"}},\"SECUREOBJECT\":{\"DEFAULTVALUE\":{},\"TYPE\":\"SECUREOBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR SECUREOBJECT-TYPED VALUES.\"}},\"ARRAYVALUE\":{\"DEFAULTVALUE\":[],\"TYPE\":\"ARRAY\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR ARRAY-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"OBJECTVALUE\":{\"DEFAULTVALUE\":{},\"TYPE\":\"OBJECT\",\"METADATA\":{\"DESCRIPTION\":\"TEST PARAMETER FOR OBJECT-TYPED VALUES FROM ENVIRONMENT VARIABLE.\"}},\"NULLABLEPARAM\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\",\"DELETEAFTER\":\"[PARAMETERS(''DELETEAFTERTIME'')]\",\"INTTAG\":\"[STRING(PARAMETERS(''INTTAGVALUE''))]\",\"BOOLTAG\":\"[STRING(PARAMETERS(''BOOLTAGVALUE''))]\",\"SECURETAG\":\"[PARAMETERS(''SECUREVALUE'')]\",\"SECUREOBJECTTAG\":\"[STRING(PARAMETERS(''SECUREOBJECT''))]\",\"ARRAYTAG\":\"[STRING(PARAMETERS(''ARRAYVALUE''))]\",\"OBJECTTAG\":\"[STRING(PARAMETERS(''OBJECTVALUE''))]\"}},\"RESOURCES\":{\"RG\":{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"},\"RESOURCES\":{\"TYPE\":\"MICROSOFT.RESOURCES/DEPLOYMENTS\",\"APIVERSION\":\"2025-04-01\",\"NAME\":\"RESOURCES\",\"DEPENDSON\":[\"RG\"],\"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\":\"6602963692698314495\"}},\"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.STORAGE/STORAGEACCOUNTS\",\"APIVERSION\":\"2022-05-01\",\"NAME\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\",\"KIND\":\"STORAGEV2\",\"SKU\":{\"NAME\":\"STANDARD_LRS\"},\"PROPERTIES\":{\"ALLOWSHAREDKEYACCESS\":FALSE}}],\"OUTPUTS\":{\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[RESOURCEID(''MICROSOFT.STORAGE/STORAGEACCOUNTS'', FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN'')))]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[FORMAT(''ST{0}'', VARIABLES(''RESOURCETOKEN''))]\"}}}},\"RESOURCEGROUP\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\"}},\"OUTPUTS\":{\"NULLABLEPARAMOUTPUT\":{\"NULLABLE\":TRUE,\"TYPE\":\"STRING\",\"VALUE\":\"[PARAMETERS(''NULLABLEPARAM'')]\"},\"AZURE_STORAGE_ACCOUNT_ID\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_ID.VALUE]\"},\"AZURE_STORAGE_ACCOUNT_NAME\":{\"TYPE\":\"STRING\",\"VALUE\":\"[REFERENCE(''RESOURCES'').OUTPUTS.AZURE_STORAGE_ACCOUNT_NAME.VALUE]\"},\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"ABC\"},\"BOOL\":{\"TYPE\":\"BOOL\",\"VALUE\":TRUE},\"INT\":{\"TYPE\":\"INT\",\"VALUE\":1234},\"ARRAY\":{\"TYPE\":\"ARRAY\",\"VALUE\":[TRUE,\"ABC\",1234]},\"ARRAY_INT\":{\"TYPE\":\"ARRAY\",\"VALUE\":[1,2,3]},\"ARRAY_STRING\":{\"TYPE\":\"ARRAY\",\"VALUE\":[\"ELEM1\",\"ELEM2\",\"ELEM3\"]},\"OBJECT\":{\"TYPE\":\"OBJECT\",\"VALUE\":{\"FOO\":\"BAR\",\"INNER\":{\"FOO\":\"BAR\"},\"ARRAY\":[TRUE,\"ABC\",1234]}},\"ARRAY_PARAM\":{\"TYPE\":\"ARRAY\",\"VALUE\":\"[PARAMETERS(''ARRAYVALUE'')]\"},\"OBJECT_PARAM\":{\"TYPE\":\"OBJECT\",\"VALUE\":\"[PARAMETERS(''OBJECTVALUE'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.42.1.51946\",\"TEMPLATEHASH\":\"4488259817381607990\"}}}","templateHash":"4488259817381607990"}' headers: Cache-Control: - no-cache Content-Length: - - "4542" + - "5122" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:05 GMT + - Thu, 09 Apr 2026 18:15:37 GMT Expires: - "-1" Pragma: @@ -420,30 +417,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 76f9d36a-ef80-4d10-85b8-a7c326c57e1f + - ecb3fa53-633a-4cab-ac91-1b913fd5bcf7 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223305Z:76f9d36a-ef80-4d10-85b8-a7c326c57e1f + - EASTUS:20260409T181537Z:ecb3fa53-633a-4cab-ac91-1b913fd5bcf7 X-Msedge-Ref: - - 'Ref A: 314D44F48E2C49018F508203C3F77850 Ref B: MWH011020809042 Ref C: 2026-01-05T22:33:05Z' + - 'Ref A: 2103816E5E07439297BB31255A4DAFF1 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:15:37Z' status: 200 OK code: 200 - duration: 58.2659ms + duration: 131.485834ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4618 + content_length: 5142 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w4abfd7"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"value":""}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"8438524736352338141"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"9492071610990153753"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}}}},"tags":{"azd-env-name":"azdtest-w4abfd7","azd-layer-name":"","azd-provision-param-hash":"94f737637b068d81feb5eddf882ffc6d0f1aee3e94e2ec426e8b61580c00e907","azd-provision-template-hash":"8438524736352338141"}}' + body: '{"location":"eastus2","properties":{"actionOnUnmanage":{"managementGroups":"delete","resourceGroups":"delete","resources":"delete"},"bypassStackOutOfSyncError":false,"denySettings":{"mode":"none"},"parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-d155b60"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"value":""}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","languageVersion":"2.0","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"4488259817381607990"}},"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."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}},"secureValue":{"type":"securestring","metadata":{"description":"Test parameter for secureString-typed values."}},"secureObject":{"type":"secureObject","defaultValue":{},"metadata":{"description":"Test parameter for secureObject-typed values."}},"arrayValue":{"type":"array","defaultValue":[],"metadata":{"description":"Test parameter for array-typed values from environment variable."}},"objectValue":{"type":"object","defaultValue":{},"metadata":{"description":"Test parameter for object-typed values from environment variable."}},"nullableParam":{"type":"string","nullable":true}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]","SecureTag":"[parameters(''secureValue'')]","SecureObjectTag":"[string(parameters(''secureObject''))]","ArrayTag":"[string(parameters(''arrayValue''))]","ObjectTag":"[string(parameters(''objectValue''))]"}},"resources":{"rg":{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},"resources":{"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":"6602963692698314495"}},"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.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}}],"outputs":{"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["rg"]}},"outputs":{"nullableParamOutput":{"type":"string","nullable":true,"value":"[parameters(''nullableParam'')]"},"AZURE_STORAGE_ACCOUNT_ID":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_ID.value]"},"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(''resources'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"},"STRING":{"type":"string","value":"abc"},"BOOL":{"type":"bool","value":true},"INT":{"type":"int","value":1234},"ARRAY":{"type":"array","value":[true,"abc",1234]},"ARRAY_INT":{"type":"array","value":[1,2,3]},"ARRAY_STRING":{"type":"array","value":["elem1","elem2","elem3"]},"OBJECT":{"type":"object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"ARRAY_PARAM":{"type":"array","value":"[parameters(''arrayValue'')]"},"OBJECT_PARAM":{"type":"object","value":"[parameters(''objectValue'')]"}}}},"tags":{"azd-env-name":"azdtest-d155b60","azd-layer-name":"","azd-provision-param-hash":"6a82f05f67efe7ecbf7a645b02e758abe7b8f6645f44c26e1de22b5b9b567c47","azd-provision-template-hash":"4488259817381607990"}}' form: {} headers: Accept: @@ -453,14 +450,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4618" + - "5142" Content-Type: - application/json User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7?api-version=2024-03-01 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60?api-version=2024-03-01 method: PUT response: proto: HTTP/2.0 @@ -468,20 +465,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1825 + content_length: 1823 uncompressed: false - body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w4abfd7\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"94f737637b068d81feb5eddf882ffc6d0f1aee3e94e2ec426e8b61580c00e907\",\r\n \"azd-provision-template-hash\": \"8438524736352338141\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w4abfd7\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"b65a256a323433d1605771aeac2eda3d\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:06.1122325Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:06.1122325Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w4abfd7\"\r\n}" + body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d155b60\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"6a82f05f67efe7ecbf7a645b02e758abe7b8f6645f44c26e1de22b5b9b567c47\",\r\n \"azd-provision-template-hash\": \"4488259817381607990\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d155b60\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [],\r\n \"provisioningState\": \"initializing\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"28cde718a413bc295ce592e23cd41fb2\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:37.4828453Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:37.4828453Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d155b60\"\r\n}" headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/d7eaf11d-f724-41fe-b011-f822edc04eab?api-version=2024-03-01&t=639032491882059748&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=gwaAmYIEOCZ2GXZ5Ax_LX5iql5h81fyYWiN0x9lfBz1MoXEdPLaCZokp5ge0PVzYWbso7USIZJe1zd5GaVvZyt0ROrJ-Y_1eBF5Z2ZqHxRAPOscidELEnWN14U2UznAQpFX3FwLnmHpoZseHmKa9eJW_bjMHG-5-4KZOCcLQL7W7cjGAw1uzs-TDZVO5DEZhTL8UxZI51prphryQuemuGRl2PLlFpd1wSiqj3vZBHEmfqY6YJesdcVl5wWklzTdrtGS-VwAauDrBjiF4WSkh8l2PvtMEnQhMBoNYWd3N0vSy8JLKDSP_Z6ShDMZBMLCG_fJ4me-0-ESgZLkK9A1E6A&h=XNPE72W_unSCry1GoWRiAflTEm1sBbEa41GBtTifrg4 + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/f91cd4a5-d5b6-4c20-aeed-73201d8afab6?api-version=2024-03-01&t=639113553383890193&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=R8Dj-YHsqvxPPMe4OQm8KeohOP3rWqNyohlnTjkrm09M79qkUw-ztro9jz2Acj1kl2d2UvKPNNKVVNH3z4nHPr8ZFZnAuDw5HdBoANPAXF6OsFsPogpqOOTZ7_WNtSoEH1STuk_lgBVDvmlRIxaP8JnaYHF-Y7quNyn0yHOyNxPgSwKdIdZ7zjVRHUybbkLDCsk7Dpeq0WWwDxlRssgA4tO1wM3iZPhodakPUoB8JdlhLyTqcVXyQKrW0aqJ7Bgwym1xWphyftrTKgemXXD5xvYMzmAgUum3e0cC-79Q8KOscP5hOy2Sz9sdYVlM3jbhdgNZ7Fe6VnknlXMmNXCQYw&h=j8Ml8J0-6uvqA0-QurS_4xUDKDzw9znPX8hliEi6IwU Cache-Control: - no-cache Content-Length: - - "1825" + - "1823" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:08 GMT + - Thu, 09 Apr 2026 18:15:38 GMT Expires: - "-1" Pragma: @@ -495,22 +492,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/2e43aab8-905c-4082-aabd-11b0b71d71d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/cd63d30e-fb45-4045-91fd-41cb96dae85b X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - a45a350e-fbfb-4c6a-9620-1004a4c2ba60 + - 4d997421-c205-4787-9c98-600c4a49fb97 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223308Z:32a1f3c9-7b6e-4f85-9a3b-0232872efe89 + - EASTUS2:20260409T181538Z:034ec9c4-c936-4125-a302-d2f07b92d6aa X-Msedge-Ref: - - 'Ref A: AF084722388E4303B2FCFFF234CCA40F Ref B: MWH011020809042 Ref C: 2026-01-05T22:33:05Z' + - 'Ref A: A14AB113DC3B447D90BEF05AC2C0BAC9 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:15:37Z' status: 201 Created code: 201 - duration: 2.249461s + duration: 1.017969625s - id: 7 request: proto: HTTP/1.1 @@ -530,10 +527,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/d7eaf11d-f724-41fe-b011-f822edc04eab?api-version=2024-03-01&t=639032491882059748&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=gwaAmYIEOCZ2GXZ5Ax_LX5iql5h81fyYWiN0x9lfBz1MoXEdPLaCZokp5ge0PVzYWbso7USIZJe1zd5GaVvZyt0ROrJ-Y_1eBF5Z2ZqHxRAPOscidELEnWN14U2UznAQpFX3FwLnmHpoZseHmKa9eJW_bjMHG-5-4KZOCcLQL7W7cjGAw1uzs-TDZVO5DEZhTL8UxZI51prphryQuemuGRl2PLlFpd1wSiqj3vZBHEmfqY6YJesdcVl5wWklzTdrtGS-VwAauDrBjiF4WSkh8l2PvtMEnQhMBoNYWd3N0vSy8JLKDSP_Z6ShDMZBMLCG_fJ4me-0-ESgZLkK9A1E6A&h=XNPE72W_unSCry1GoWRiAflTEm1sBbEa41GBtTifrg4 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/f91cd4a5-d5b6-4c20-aeed-73201d8afab6?api-version=2024-03-01&t=639113553383890193&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=R8Dj-YHsqvxPPMe4OQm8KeohOP3rWqNyohlnTjkrm09M79qkUw-ztro9jz2Acj1kl2d2UvKPNNKVVNH3z4nHPr8ZFZnAuDw5HdBoANPAXF6OsFsPogpqOOTZ7_WNtSoEH1STuk_lgBVDvmlRIxaP8JnaYHF-Y7quNyn0yHOyNxPgSwKdIdZ7zjVRHUybbkLDCsk7Dpeq0WWwDxlRssgA4tO1wM3iZPhodakPUoB8JdlhLyTqcVXyQKrW0aqJ7Bgwym1xWphyftrTKgemXXD5xvYMzmAgUum3e0cC-79Q8KOscP5hOy2Sz9sdYVlM3jbhdgNZ7Fe6VnknlXMmNXCQYw&h=j8Ml8J0-6uvqA0-QurS_4xUDKDzw9znPX8hliEi6IwU method: GET response: proto: HTTP/2.0 @@ -543,7 +540,7 @@ interactions: trailer: {} content_length: 260 uncompressed: false - body: "{\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/d7eaf11d-f724-41fe-b011-f822edc04eab\",\r\n \"name\": \"d7eaf11d-f724-41fe-b011-f822edc04eab\",\r\n \"status\": \"succeeded\"\r\n}" + body: "{\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/f91cd4a5-d5b6-4c20-aeed-73201d8afab6\",\r\n \"name\": \"f91cd4a5-d5b6-4c20-aeed-73201d8afab6\",\r\n \"status\": \"succeeded\"\r\n}" headers: Cache-Control: - no-cache @@ -552,7 +549,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:55 GMT + - Thu, 09 Apr 2026 18:16:55 GMT Expires: - "-1" Pragma: @@ -564,22 +561,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westcentralus/954dac86-3b44-4d79-a36f-ce206732e491 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/69cfc7b6-e2e2-43e7-a8b2-12db21d76df5 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a7a0db65-b6bb-4bb1-bde4-5ed19888949f + - 7ccd7235-ecd2-42aa-87cf-23572a6743e6 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260105T223355Z:cf5b768d-7831-4e77-ac35-e16e20e82ce4 + - EASTUS2:20260409T181655Z:65da06d3-9a06-4eb9-b3ff-d9fe91685fc8 X-Msedge-Ref: - - 'Ref A: A7C5ECD1DE0D4565925912D902CD96C9 Ref B: MWH011020809042 Ref C: 2026-01-05T22:33:55Z' + - 'Ref A: 3AC0393E00F74848AC5651363AFF7DCF Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:16:55Z' status: 200 OK code: 200 - duration: 204.4417ms + duration: 76.727208ms - id: 8 request: proto: HTTP/1.1 @@ -599,10 +596,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7?api-version=2024-03-01 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -610,18 +607,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3801 + content_length: 3965 uncompressed: false - body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w4abfd7\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"94f737637b068d81feb5eddf882ffc6d0f1aee3e94e2ec426e8b61580c00e907\",\r\n \"azd-provision-template-hash\": \"8438524736352338141\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w4abfd7-260105229oz1t\",\r\n \"duration\": \"PT31.1651213S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"nullableParamOutput\": {\r\n \"type\": \"String\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stfyii2xg46fppk\"\r\n },\r\n \"string\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bool\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"int\": {\r\n \"type\": \"Int\",\r\n \"value\": 1234\r\n },\r\n \"array\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n },\r\n \"arraY_INT\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n 1,\r\n 2,\r\n 3\r\n ]\r\n },\r\n \"arraY_STRING\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n \"elem1\",\r\n \"elem2\",\r\n \"elem3\"\r\n ]\r\n },\r\n \"object\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"foo\": \"bar\",\r\n \"inner\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"array\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w4abfd7\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7\"\r\n },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"b65a256a323433d1605771aeac2eda3d\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:06.1122325Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:06.1122325Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w4abfd7\"\r\n}" + body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d155b60\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"6a82f05f67efe7ecbf7a645b02e758abe7b8f6645f44c26e1de22b5b9b567c47\",\r\n \"azd-provision-template-hash\": \"4488259817381607990\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d155b60-260409184ktjg\",\r\n \"duration\": \"PT1M14.2498195S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"nullableParamOutput\": {\r\n \"type\": \"String\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stljhhi4m4upgsu\"\r\n },\r\n \"string\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bool\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"int\": {\r\n \"type\": \"Int\",\r\n \"value\": 1234\r\n },\r\n \"array\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n },\r\n \"arraY_INT\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n 1,\r\n 2,\r\n 3\r\n ]\r\n },\r\n \"arraY_STRING\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n \"elem1\",\r\n \"elem2\",\r\n \"elem3\"\r\n ]\r\n },\r\n \"object\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"foo\": \"bar\",\r\n \"inner\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"array\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n }\r\n },\r\n \"arraY_PARAM\": {\r\n \"type\": \"Array\",\r\n \"value\": []\r\n },\r\n \"objecT_PARAM\": {\r\n \"type\": \"Object\",\r\n \"value\": {}\r\n }\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d155b60\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60\"\r\n },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"28cde718a413bc295ce592e23cd41fb2\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:37.4828453Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:37.4828453Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d155b60\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "3801" + - "3965" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:55 GMT + - Thu, 09 Apr 2026 18:16:55 GMT Expires: - "-1" Pragma: @@ -633,22 +630,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/bf98793d-31ab-40da-9f11-67555482e704 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/1a2cb3b1-8ee5-45e4-879d-d089fe40c9b2 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9b61efc1-eb87-4f8c-bfc5-656c8c377be4 + - b8b2993f-ff83-4150-bfc6-e66f17dfcdb0 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223355Z:fe321786-5e45-46b8-ab2f-de8abbfe0e06 + - EASTUS:20260409T181655Z:cfa403c1-6016-4b2f-8896-4cbfa1e7e921 X-Msedge-Ref: - - 'Ref A: 0FD875510C3D45EB9DDF9B60C499B447 Ref B: MWH011020809042 Ref C: 2026-01-05T22:33:55Z' + - 'Ref A: 182A6F0BE30540C9B54C778022066959 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:16:55Z' status: 200 OK code: 200 - duration: 176.754ms + duration: 115.230375ms - id: 9 request: proto: HTTP/1.1 @@ -670,10 +667,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7?api-version=2024-03-01 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -681,18 +678,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3801 + content_length: 3965 uncompressed: false - body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w4abfd7\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"94f737637b068d81feb5eddf882ffc6d0f1aee3e94e2ec426e8b61580c00e907\",\r\n \"azd-provision-template-hash\": \"8438524736352338141\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w4abfd7-260105229oz1t\",\r\n \"duration\": \"PT31.1651213S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"nullableParamOutput\": {\r\n \"type\": \"String\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stfyii2xg46fppk\"\r\n },\r\n \"string\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bool\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"int\": {\r\n \"type\": \"Int\",\r\n \"value\": 1234\r\n },\r\n \"array\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n },\r\n \"arraY_INT\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n 1,\r\n 2,\r\n 3\r\n ]\r\n },\r\n \"arraY_STRING\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n \"elem1\",\r\n \"elem2\",\r\n \"elem3\"\r\n ]\r\n },\r\n \"object\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"foo\": \"bar\",\r\n \"inner\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"array\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w4abfd7\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7\"\r\n },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"b65a256a323433d1605771aeac2eda3d\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:06.1122325Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:06.1122325Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w4abfd7\"\r\n}" + body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d155b60\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"6a82f05f67efe7ecbf7a645b02e758abe7b8f6645f44c26e1de22b5b9b567c47\",\r\n \"azd-provision-template-hash\": \"4488259817381607990\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d155b60-260409184ktjg\",\r\n \"duration\": \"PT1M14.2498195S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"nullableParamOutput\": {\r\n \"type\": \"String\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stljhhi4m4upgsu\"\r\n },\r\n \"string\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bool\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"int\": {\r\n \"type\": \"Int\",\r\n \"value\": 1234\r\n },\r\n \"array\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n },\r\n \"arraY_INT\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n 1,\r\n 2,\r\n 3\r\n ]\r\n },\r\n \"arraY_STRING\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n \"elem1\",\r\n \"elem2\",\r\n \"elem3\"\r\n ]\r\n },\r\n \"object\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"foo\": \"bar\",\r\n \"inner\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"array\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n }\r\n },\r\n \"arraY_PARAM\": {\r\n \"type\": \"Array\",\r\n \"value\": []\r\n },\r\n \"objecT_PARAM\": {\r\n \"type\": \"Object\",\r\n \"value\": {}\r\n }\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d155b60\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60\"\r\n },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"28cde718a413bc295ce592e23cd41fb2\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:37.4828453Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:37.4828453Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d155b60\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "3801" + - "3965" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:55 GMT + - Thu, 09 Apr 2026 18:16:55 GMT Expires: - "-1" Pragma: @@ -704,22 +701,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westcentralus/60241a06-2c77-4396-83a0-855193c4c871 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/7a9d581c-0128-4200-9804-cd018883a6e4 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - b72c0a42-c76a-4e72-96bf-33cb3554527f + - a22f744b-de21-4bf2-b414-e595febd5543 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260105T223356Z:e8c5efcd-0630-47bf-81e7-4cf3f8e6002d + - EASTUS:20260409T181656Z:4f784e63-8c9c-42e4-ae7a-980e70f0effc X-Msedge-Ref: - - 'Ref A: 39D3BF43CFC84DAF8D3FD6B067F18F75 Ref B: MWH011020809042 Ref C: 2026-01-05T22:33:55Z' + - 'Ref A: 7E71F218A38C47B390F6B9677A637788 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:16:56Z' status: 200 OK code: 200 - duration: 125.4348ms + duration: 124.510917ms - id: 10 request: proto: HTTP/1.1 @@ -741,10 +738,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4abfd7%27&api-version=2021-04-01 + - 28cde718a413bc295ce592e23cd41fb2 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d155b60%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -752,18 +749,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 429 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7","name":"rg-azdtest-w4abfd7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4abfd7","DeleteAfter":"2026-01-05T23:33:09Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60","name":"rg-azdtest-d155b60","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d155b60","DeleteAfter":"2026-04-09T19:15:39Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}","ArrayTag":"[]","ObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "429" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:33:55 GMT + - Thu, 09 Apr 2026 18:16:56 GMT Expires: - "-1" Pragma: @@ -775,20 +772,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b65a256a323433d1605771aeac2eda3d + - 28cde718a413bc295ce592e23cd41fb2 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f513b57c-79b6-4abc-80d2-faaacaa2d189 + - 7246f7dc-f762-43ef-954f-469ff2552fc9 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223356Z:f513b57c-79b6-4abc-80d2-faaacaa2d189 + - EASTUS:20260409T181656Z:7246f7dc-f762-43ef-954f-469ff2552fc9 X-Msedge-Ref: - - 'Ref A: 21AEF99A484C458BA8490D44A2D481B1 Ref B: MWH011020809042 Ref C: 2026-01-05T22:33:56Z' + - 'Ref A: 026BC1E2F82942CCB95B25E9E003D406 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:16:56Z' status: 200 OK code: 200 - duration: 50.6217ms + duration: 153.392916ms - id: 11 request: proto: HTTP/1.1 @@ -810,10 +807,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 + - 40ee186426248dde07cb3782a9054c17 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -821,18 +818,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 117070 + content_length: 2654 uncompressed: false - body: '{"value":[{"location":"eastus2","tags":{"azd-env-name":"wb-devcenter","azd-provision-param-hash":"1703eb68c2ad1b43d805b4f3629347ab536b518c74cac8524214d1e5e177fec0","azd-provision-template-hash":"12936708950563926356"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wb-devcenter-24090419dkbg6","duration":"P49DT40M15.0480908S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}},"parameters":{"environmentName":{"value":"wb-devcenter","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Dev"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Dev"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/212c5cf8-80df-55be-ab33-1a94ba7d50db"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/2e853c6c-0075-5269-993e-359edba0ce52"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/882a618a-dcac-529a-8bd9-eed56c85ed97"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/9e4222b4-d71b-5ef1-a6d5-309a1b0e91c8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/c3cb2abf-0753-5362-ba67-ba0dd89f5aef"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/d1c24fc0-0eab-5df4-8369-54ec87eb54bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/e07609f2-9b90-5d93-9324-61d4a305e7c1"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/catalogs/Example"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Prod"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Test"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/providers/Microsoft.Insights/diagnosticSettings/logs"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Prod"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Test"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/providers/Microsoft.Authorization/roleAssignments/55c37c1b-7c47-5d5f-8a02-a002a256260f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Dev"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Prod"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Test"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-2/providers/Microsoft.Authorization/roleAssignments/43c4b66a-690c-58a4-8fcb-1c4785dad8d1"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.OperationalInsights/workspaces/law-v2g7nbovakbgg"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1"}],"failedResources":[{"error":{"code":"AssociatedProjectsExist","message":"There are projects currently associated to this DevCenter. Please delete dependent Projects before attempting to delete this resource. Associated Projects: [/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-wb-devcenter/providers/microsoft.devcenter/projects/project-1]","details":[],"additionalInfo":[]},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg"},{"error":{"code":"DependentResourcesExist","message":"Resources of type Microsoft.DevCenter/projects/environmenttypes which depend on this resource still exist. Delete the dependent resources before attempting to delete this resource.","details":[],"additionalInfo":[]},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/devcenters/dc-contoso-v2g7nbovakbgg/environmentTypes/Dev"},{"error":{"code":"DependentResourcesExist","message":"Resources of type environment which depend on this resource still exist. Delete the dependent resources before attempting to delete this resource.","details":[],"additionalInfo":[]},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Dev"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''c820a957-ac47-4829-9fb2-2f48f1af58b5''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"c820a957-ac47-4829-9fb2-2f48f1af58b5"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-09-04T19:46:21.2576015Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-04T19:46:21.2576015Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wb-devcenter","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wb-devcenter"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-soaijs","azd-provision-param-hash":"496c45d4651d05f5d5902391d322c026d3e692d57a2892f869bdba5d14e610a7","azd-provision-template-hash":"15807534371776706057"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-soaijs-24102422egazq","duration":"PT20H15M40.7628777S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crrhyrwnrgiq3jy.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crrhyrwnrgiq3jy"},"azurE_OPENAI_SERVICE":{"type":"String","value":"cog-rhyrwnrgiq3jy"},"azurE_OPENAI_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"azurE_OPENAI_CHATGPT_DEPLOYMENT":{"type":"String","value":"chat"},"azurE_OPENAI_CHATGPT_MODEL":{"type":"String","value":"gpt-35-turbo"},"azurE_OPENAI_EMBEDDING_DEPLOYMENT":{"type":"String","value":"embedding"},"azurE_OPENAI_EMBEDDING_MODEL":{"type":"String","value":"text-embedding-ada-002"},"azurE_SEARCH_INDEX":{"type":"String","value":"gptkbindex"},"azurE_SEARCH_SERVICE":{"type":"String","value":"gptkb-rhyrwnrgiq3jy"},"azurE_SEARCH_SERVICE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"azurE_STORAGE_ACCOUNT":{"type":"String","value":"strhyrwnrgiq3jy"},"azurE_STORAGE_CONTAINER":{"type":"String","value":"content"},"azurE_STORAGE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-soaijs"},"webapP_URI":{"type":"String","value":"https://ashy-pebble-04849580f.5.azurestaticapps.net"},"searcH_API_URI":{"type":"String","value":"https://search.greentree-efb41532.eastus2.azurecontainerapps.io"},"indexeR_API_URI":{"type":"String","value":"https://indexer.greentree-efb41532.eastus2.azurecontainerapps.io"},"alloweD_ORIGINS":{"type":"String","value":"https://ashy-pebble-04849580f.5.azurestaticapps.net,''''"},"backenD_URI":{"type":"String","value":"https://search.greentree-efb41532.eastus2.azurecontainerapps.io"},"indexeR_PRINCIPAL_ID":{"type":"String","value":"4d2ebf28-d51f-4cc7-801c-bcfaea042c9c"},"searcH_API_PRINCIPAL_ID":{"type":"String","value":"6632bab4-54b2-4650-a24f-253b68f49ecd"}},"parameters":{"allowedOrigin":{"value":"''''","type":"string"},"chatGptDeploymentName":{"value":"chat","type":"string"},"chatGptModelName":{"value":"gpt-35-turbo","type":"string"},"chatGptModelVersion":{"value":"0613","type":"string"},"environmentName":{"value":"wabrez-soaijs","type":"string"},"isContinuousDeployment":{"value":false,"type":"bool"},"location":{"value":"eastus2","type":"string"},"openAiResourceGroupLocation":{"value":"eastus2","type":"string"},"openAiSkuName":{"value":"S0","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"searchIndexName":{"value":"gptkbindex","type":"string"},"searchServiceSkuName":{"value":"standard","type":"string"},"storageSkuName":{"value":"Standard_LRS","type":"string"},"webAppLocation":{"value":"eastus2","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/indexer"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/search"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/managedEnvironments/cae-rhyrwnrgiq3jy"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/0069e26a-fbca-51bb-807c-4d3f8a117210"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/133ca5fc-eea9-524c-882a-4a68842247b0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/153afc47-2e0d-53b4-92dd-4ac9fb23e66b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/4d0880a5-4024-5c43-be30-3b1fb9e1736b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/56410136-bf16-55ac-b722-ee8f81a6d136"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/6889fda7-8b08-52ea-a4aa-538038c9d48b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/6f1b1914-c1e3-51bb-a388-919fd62e036b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/8a07f63b-e7be-56d1-ab77-730d2491082b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/af1c4ac2-f810-535b-a103-6e346e8ab245"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/be971969-0f24-511f-ad39-666aba972703"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Authorization/roleAssignments/e689cd2e-75c8-55da-a685-5f7c75b79074"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.CognitiveServices/accounts/cog-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.CognitiveServices/accounts/cog-rhyrwnrgiq3jy/deployments/chat"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.CognitiveServices/accounts/cog-rhyrwnrgiq3jy/deployments/embedding"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ContainerRegistry/registries/crrhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ContainerRegistry/registries/crrhyrwnrgiq3jy/providers/Microsoft.Authorization/roleAssignments/b1526f99-138b-54fc-80e6-f37aac9b6f44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ContainerRegistry/registries/crrhyrwnrgiq3jy/providers/Microsoft.Authorization/roleAssignments/f3520502-dd0a-5582-99e6-34b0c7740c64"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Insights/components/appi-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-indexer-api-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-search-api-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.OperationalInsights/workspaces/log-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Portal/dashboards/dash-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Search/searchServices/gptkb-rhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Storage/storageAccounts/strhyrwnrgiq3jy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Storage/storageAccounts/strhyrwnrgiq3jy/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Storage/storageAccounts/strhyrwnrgiq3jy/blobServices/default/containers/content"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.Web/staticSites/webapp"}],"failedResources":[{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/indexer"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/containerApps/search"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs/providers/Microsoft.App/managedEnvironments/cae-rhyrwnrgiq3jy"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-soaijs"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''ac6cc69c-94ae-4378-91c1-f7a0e92be492''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"ac6cc69c-94ae-4378-91c1-f7a0e92be492"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-10-24T22:49:22.5936173Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-24T22:49:22.5936173Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-soaijs","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-soaijs"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-todo-aca-04","azd-provision-param-hash":"809d08fa4229bb0ba335cbf9a699466a6b66fb0205e142d139d17552f8cef27b","azd-provision-template-hash":"16358757304958454518"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-todo-aca-04-24102423bczpi","duration":"PT19H41M56.1954495S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_COSMOS_CONNECTION_STRING_KEY":{"type":"String","value":"AZURE-COSMOS-CONNECTION-STRING"},"azurE_COSMOS_DATABASE_NAME":{"type":"String","value":"Todo"},"apI_CORS_ACA_URL":{"type":"String","value":"https://ca-web-kwwjrk3nujxqo.niceground-f03c01f5.eastus2.azurecontainerapps.io"},"applicationinsightS_CONNECTION_STRING":{"type":"String","value":"InstrumentationKey=cdee56df-54e4-4ada-bca2-dbe9ae6c65f7;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=4a0caec3-456b-4842-a79d-5aee22515574"},"applicationinsightS_NAME":{"type":"String","value":"appi-kwwjrk3nujxqo"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-kwwjrk3nujxqo"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crkwwjrk3nujxqo.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crkwwjrk3nujxqo"},"azurE_KEY_VAULT_ENDPOINT":{"type":"String","value":"https://kv-kwwjrk3nujxqo.vault.azure.net/"},"azurE_KEY_VAULT_NAME":{"type":"String","value":"kv-kwwjrk3nujxqo"},"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"apI_BASE_URL":{"type":"String","value":"https://ca-api-kwwjrk3nujxqo.niceground-f03c01f5.eastus2.azurecontainerapps.io"},"reacT_APP_WEB_BASE_URL":{"type":"String","value":"https://ca-web-kwwjrk3nujxqo.niceground-f03c01f5.eastus2.azurecontainerapps.io"},"servicE_API_NAME":{"type":"String","value":"ca-api-kwwjrk3nujxqo"},"servicE_WEB_NAME":{"type":"String","value":"ca-web-kwwjrk3nujxqo"},"usE_APIM":{"type":"Bool","value":false},"servicE_API_ENDPOINTS":{"type":"Array","value":[]}},"parameters":{"apiAppExists":{"value":false,"type":"bool"},"apimSku":{"value":"Consumption","type":"string"},"containerRegistryHostSuffix":{"value":"azurecr.io","type":"string"},"environmentName":{"value":"wabrez-todo-aca-04","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"useAPIM":{"value":false,"type":"bool"},"webAppExists":{"value":false,"type":"bool"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-api-kwwjrk3nujxqo"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-web-kwwjrk3nujxqo"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/managedEnvironments/cae-kwwjrk3nujxqo"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ContainerRegistry/registries/crkwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ContainerRegistry/registries/crkwwjrk3nujxqo/providers/Microsoft.Authorization/roleAssignments/5ec79453-e8de-51fe-89db-8f7fa3dbedbe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ContainerRegistry/registries/crkwwjrk3nujxqo/providers/Microsoft.Authorization/roleAssignments/d8422f41-7ef1-5b59-9208-da5bbf858bf0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo/mongodbDatabases/Todo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo/mongodbDatabases/Todo/collections/TodoItem"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-kwwjrk3nujxqo/mongodbDatabases/Todo/collections/TodoList"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.Insights/components/appi-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.KeyVault/vaults/kv-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.KeyVault/vaults/kv-kwwjrk3nujxqo/accessPolicies/add"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.KeyVault/vaults/kv-kwwjrk3nujxqo/secrets/AZURE-COSMOS-CONNECTION-STRING"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-api-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-web-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.OperationalInsights/workspaces/log-kwwjrk3nujxqo"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.Portal/dashboards/dash-kwwjrk3nujxqo"}],"failedResources":[{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-api-kwwjrk3nujxqo"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/containerApps/ca-web-kwwjrk3nujxqo"},{"error":{"target":"Unsupported API version","message":"Unsupported API version"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04/providers/Microsoft.App/managedEnvironments/cae-kwwjrk3nujxqo"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca-04"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''a70a407ab0438e1a3eb2a7ac1c228167''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"a70a407ab0438e1a3eb2a7ac1c228167"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-10-24T23:38:49.1558649Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-24T23:38:49.1558649Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-todo-aca-04","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-todo-aca-04"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-js-langchain","azd-provision-param-hash":"e322da0b7d5dce14ca3297900cbee38d05e35a2eb86a14666e432e412d888938","azd-provision-template-hash":"7323834621748011077"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-js-langchain-24102520cy8rr","duration":"PT5M54.7609361S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-js-langchain"},"azurE_OPENAI_API_ENDPOINT":{"type":"String","value":"https://cog-qufro6puft7wm.openai.azure.com"},"azurE_OPENAI_API_INSTANCE_NAME":{"type":"String","value":"cog-qufro6puft7wm"},"azurE_OPENAI_API_VERSION":{"type":"String","value":"2024-02-01"},"azurE_OPENAI_API_DEPLOYMENT_NAME":{"type":"String","value":"gpt-4"},"azurE_OPENAI_API_EMBEDDINGS_DEPLOYMENT_NAME":{"type":"String","value":"text-embedding-ada-002"},"azurE_STORAGE_URL":{"type":"String","value":"https://stqufro6puft7wm.blob.core.windows.net"},"azurE_STORAGE_CONTAINER_NAME":{"type":"String","value":"files"},"azurE_COSMOSDB_NOSQL_ENDPOINT":{"type":"String","value":"https://cosmos-qufro6puft7wm.documents.azure.com:443/"},"apI_URL":{"type":"String","value":"https://func-api-qufro6puft7wm.azurewebsites.net"},"webapP_URL":{"type":"String","value":"https://wonderful-dune-03928eb0f.5.azurestaticapps.net"},"uploaD_URL":{"type":"String","value":"https://func-api-qufro6puft7wm.azurewebsites.net"}},"parameters":{"chatModelName":{"value":"gpt-4","type":"string"},"chatModelVersion":{"value":"turbo-2024-04-09","type":"string"},"embeddingsModelName":{"value":"text-embedding-ada-002","type":"string"},"embeddingsModelVersion":{"value":"2","type":"string"},"environmentName":{"value":"wabrez-js-langchain","type":"string"},"isContinuousDeployment":{"value":false,"type":"bool"},"location":{"value":"eastus2","type":"string"},"openAiApiVersion":{"value":"2024-02-01","type":"string"},"openAiLocation":{"value":"eastus2","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"useVnet":{"value":false,"type":"bool"},"webappLocation":{"value":"eastus2","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/03847389-20fc-5b3d-a57c-3330b0e87322"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/703fc402-76b0-5ad1-86fc-3d74174d7ccb"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/eb308de5-244c-5c93-b756-a1073fbf74b9"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Authorization/roleAssignments/f0be220a-efb0-55cf-ae5c-ba617cc3966f"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.CognitiveServices/accounts/cog-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.CognitiveServices/accounts/cog-qufro6puft7wm/deployments/gpt-4"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.CognitiveServices/accounts/cog-qufro6puft7wm/deployments/text-embedding-ada-002"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlDatabases/vectorSearchDB"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlDatabases/vectorSearchDB/containers/vectorSearchContainer"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlRoleAssignments/4a4720f9-6dee-528e-aea7-404486c8099a"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlRoleAssignments/823e98b2-f0f8-5722-95f5-aae6514b4fd4"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-qufro6puft7wm/sqlRoleDefinitions/8dbddcdb-d0d9-59b7-b9a4-cdae5973654b"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Insights/components/appi-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.OperationalInsights/workspaces/log-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Portal/dashboards/dash-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Storage/storageAccounts/stqufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Storage/storageAccounts/stqufro6puft7wm/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Storage/storageAccounts/stqufro6puft7wm/blobServices/default/containers/files"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/serverfarms/plan-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/basicPublishingCredentialsPolicies/ftp"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/basicPublishingCredentialsPolicies/scm"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/config/appsettings"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/sites/func-api-qufro6puft7wm/config/logs"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-js-langchain/providers/Microsoft.Web/staticSites/webapp"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"6143501b12417681d2338cabe37893ea"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-10-25T20:44:15.2281232Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-25T20:44:15.2281232Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-js-langchain","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-js-langchain"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-ai-hoolis","azd-provision-param-hash":"066900d972674f5a0be2883b6676c46d189bef6083450e364b0befaa69fd4fad","azd-provision-template-hash":"9113841959502242968"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-ai-hoolis-241203223efld","duration":"PT4H12M24.2034039S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-ai-hoolis"},"azureaI_HUB_NAME":{"type":"String","value":"ai-hub-3erlnu6mjxgn6"},"azureaI_PROJECT_NAME":{"type":"String","value":"ai-project-3erlnu6mjxgn6"},"azureaI_ENDPOINT_NAME":{"type":"String","value":"mloe-3erlnu6mjxgn6"},"azurE_OPENAI_NAME":{"type":"String","value":"aoai-3erlnu6mjxgn6"},"azurE_OPENAI_ENDPOINT":{"type":"String","value":"https://aoai-3erlnu6mjxgn6.openai.azure.com/"},"azurE_SEARCH_NAME":{"type":"String","value":"srch-3erlnu6mjxgn6"},"azurE_SEARCH_ENDPOINT":{"type":"String","value":"https://srch-3erlnu6mjxgn6.search.windows.net/"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cr3erlnu6mjxgn6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cr3erlnu6mjxgn6.azurecr.io"},"azurE_KEYVAULT_NAME":{"type":"String","value":"kv-3erlnu6mjxgn6"},"azurE_KEYVAULT_ENDPOINT":{"type":"String","value":"https://kv-3erlnu6mjxgn6.vault.azure.net/"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st3erlnu6mjxgn6"},"azurE_STORAGE_ACCOUNT_ENDPOINT":{"type":"String","value":"st3erlnu6mjxgn6"},"azurE_APPLICATION_INSIGHTS_NAME":{"type":"String","value":"appi-3erlnu6mjxgn6"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"log-3erlnu6mjxgn6"}},"parameters":{"aiHubName":{"value":"ai-hub-3erlnu6mjxgn6","type":"string"},"aiProjectName":{"value":"ai-project-3erlnu6mjxgn6","type":"string"},"applicationInsightsName":{"value":"appi-3erlnu6mjxgn6","type":"string"},"containerRegistryName":{"value":"cr3erlnu6mjxgn6","type":"string"},"endpointName":{"value":"mloe-3erlnu6mjxgn6","type":"string"},"environmentName":{"value":"wabrez-ai-hoolis","type":"string"},"keyVaultName":{"value":"kv-3erlnu6mjxgn6","type":"string"},"location":{"value":"eastus2","type":"string"},"logAnalyticsWorkspaceName":{"value":"log-3erlnu6mjxgn6","type":"string"},"openAiName":{"value":"aoai-3erlnu6mjxgn6","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"resourceGroupName":{"value":"rg-wabrez-ai-hoolis","type":"string"},"searchServiceName":{"value":"","type":"string"},"storageAccountName":{"value":"st3erlnu6mjxgn6","type":"string"},"useApplicationInsights":{"value":true,"type":"bool"},"useContainerRegistry":{"value":true,"type":"bool"},"useSearch":{"value":true,"type":"bool"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Insights/components/appi-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Search/searchServices/srch-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.KeyVault/vaults/kv-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/fileServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/blobServices/default/containers/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/queueServices/default/queues/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/queueServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6/tableServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Storage/storageAccounts/st3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.OperationalInsights/workspaces/log-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.ContainerRegistry/registries/cr3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/14a589df-0bef-5ec2-85ea-34da2b3fb1ba"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/cef31f72-1a5c-556c-8503-e621db582c76"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/cfea18d2-cab8-51d0-ad82-e513a2f9e4e6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/6c087706-b9af-5cac-98f2-1b286b4cc1cb"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.CognitiveServices/accounts/aoai-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.KeyVault/vaults/kv-3erlnu6mjxgn6/accessPolicies/add"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/connections/aoai-connection"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/connections/aoai-content-safety-connection"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/connections/search-service-connection"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-hub-3erlnu6mjxgn6/providers/Microsoft.Authorization/roleAssignments/3ca2c4c7-4251-5e81-96b0-9edcda209c84"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6/onlineEndpoints/mloe-3erlnu6mjxgn6"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6/onlineEndpoints/mloe-3erlnu6mjxgn6/providers/Microsoft.Authorization/roleAssignments/1e4f9fa9-cc15-542d-9850-5e3bcea5192d"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.MachineLearningServices/workspaces/ai-project-3erlnu6mjxgn6/providers/Microsoft.Authorization/roleAssignments/13a87445-b92b-5b0d-bd9f-7ceb1f35ca13"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/960a1f2e-3ce8-58c6-872a-923ba825c874"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/d86b2af1-77da-593f-8d2a-b86b61680c22"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/1edaf4c4-2278-5ff4-8b91-3923401a47a0"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/a9ca5272-e2ea-5fd8-b84a-ddbac4c905d8"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/1edaf4c4-2278-5ff4-8b91-3923401a47a0","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/1edaf4c4-2278-5ff4-8b91-3923401a47a0"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/a9ca5272-e2ea-5fd8-b84a-ddbac4c905d8","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ai-hoolis/providers/Microsoft.Authorization/roleAssignments/a9ca5272-e2ea-5fd8-b84a-ddbac4c905d8"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''65cf1f5af437064350d220247d2a2b21''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"65cf1f5af437064350d220247d2a2b21"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-11-06T20:09:11.7312357Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-03T22:11:37.0772913Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-ai-hoolis","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-ai-hoolis"},{"location":"eastus2","tags":{"azd-env-name":"wabrez-azd-search-demo","azd-provision-param-hash":"3c08e868459dbd4c5aff6540e3aea41bb3f432921e9cbf31f4b900b851e933c2","azd-provision-template-hash":"3797412539320313459"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-wabrez-azd-search-demo-24111419byz6e","duration":"PT3M26.9375345S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"azurE_AUTH_TENANT_ID":{"type":"String","value":""},"azurE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"openaI_HOST":{"type":"String","value":"azure"},"azurE_OPENAI_EMB_MODEL_NAME":{"type":"String","value":"text-embedding-ada-002"},"azurE_OPENAI_CHATGPT_MODEL":{"type":"String","value":"gpt-35-turbo"},"azurE_OPENAI_GPT4V_MODEL":{"type":"String","value":"gpt-4o"},"azurE_OPENAI_SERVICE":{"type":"String","value":"cog-jnpurrdbdxfms"},"azurE_OPENAI_API_VERSION":{"type":"String","value":""},"azurE_OPENAI_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_OPENAI_CHATGPT_DEPLOYMENT":{"type":"String","value":"chat"},"azurE_OPENAI_EMB_DEPLOYMENT":{"type":"String","value":"embedding"},"azurE_OPENAI_GPT4V_DEPLOYMENT":{"type":"String","value":"gpt-4o"},"azurE_SPEECH_SERVICE_ID":{"type":"String","value":""},"azurE_SPEECH_SERVICE_LOCATION":{"type":"String","value":""},"azurE_VISION_ENDPOINT":{"type":"String","value":""},"azurE_DOCUMENTINTELLIGENCE_SERVICE":{"type":"String","value":"cog-di-jnpurrdbdxfms"},"azurE_DOCUMENTINTELLIGENCE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_SEARCH_INDEX":{"type":"String","value":"azd"},"azurE_SEARCH_SERVICE":{"type":"String","value":"gptkb-jnpurrdbdxfms"},"azurE_SEARCH_SERVICE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_SEARCH_SEMANTIC_RANKER":{"type":"String","value":"free"},"azurE_SEARCH_SERVICE_ASSIGNED_USERID":{"type":"String","value":"0432371a-a7e9-44b3-8da0-1e0ae055d006"},"azurE_COSMOSDB_ACCOUNT":{"type":"String","value":""},"azurE_CHAT_HISTORY_DATABASE":{"type":"String","value":"chat-database"},"azurE_CHAT_HISTORY_CONTAINER":{"type":"String","value":"chat-history"},"azurE_STORAGE_ACCOUNT":{"type":"String","value":"stjnpurrdbdxfms"},"azurE_STORAGE_CONTAINER":{"type":"String","value":"azd"},"azurE_STORAGE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_USERSTORAGE_ACCOUNT":{"type":"String","value":""},"azurE_USERSTORAGE_CONTAINER":{"type":"String","value":"user-content"},"azurE_USERSTORAGE_RESOURCE_GROUP":{"type":"String","value":"rg-wabrez-azd-search-demo"},"azurE_USE_AUTHENTICATION":{"type":"Bool","value":false},"backenD_URI":{"type":"String","value":"https://capps-backend-jnpurrdbdxfms.victoriousbush-a334bb99.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"wabrezazdsearchdemoacrjnpurrdbdxfms.azurecr.io"}},"parameters":{"appServiceSkuName":{"value":"B1","type":"string"},"azureContainerAppsWorkloadProfile":{"value":"Consumption","type":"string"},"bypass":{"value":"AzureServices","type":"string"},"chatGptDeploymentName":{"value":"chat","type":"string"},"chatGptModelName":{"value":"gpt-35-turbo","type":"string"},"computerVisionResourceGroupLocation":{"value":"eastus","type":"string"},"computerVisionSkuName":{"value":"S1","type":"string"},"cosmosDbSkuName":{"value":"serverless","type":"string"},"deploymentTarget":{"value":"containerapps","type":"string"},"disableAppServicesAuthentication":{"value":false,"type":"bool"},"documentIntelligenceResourceGroupLocation":{"value":"eastus","type":"string"},"documentIntelligenceResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"documentIntelligenceServiceName":{"value":"cog-di-jnpurrdbdxfms","type":"string"},"documentIntelligenceSkuName":{"value":"S0","type":"string"},"embeddingDeploymentName":{"value":"embedding","type":"string"},"embeddingModelName":{"value":"text-embedding-ada-002","type":"string"},"enableGlobalDocuments":{"value":false,"type":"bool"},"enableLanguagePicker":{"value":false,"type":"bool"},"enableUnauthenticatedAccess":{"value":false,"type":"bool"},"enforceAccessControl":{"value":false,"type":"bool"},"environmentName":{"value":"wabrez-azd-search-demo","type":"string"},"gpt4vDeploymentName":{"value":"gpt-4o","type":"string"},"gpt4vModelName":{"value":"gpt-4o","type":"string"},"location":{"value":"eastus2","type":"string"},"openAiHost":{"value":"azure","type":"string"},"openAiResourceGroupLocation":{"value":"eastus2","type":"string"},"openAiResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"openAiServiceName":{"value":"cog-jnpurrdbdxfms","type":"string"},"openAiSkuName":{"value":"S0","type":"string"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32","type":"string"},"publicNetworkAccess":{"value":"Enabled","type":"string"},"resourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"searchIndexName":{"value":"azd","type":"string"},"searchQueryLanguage":{"value":"en-us","type":"string"},"searchQuerySpeller":{"value":"lexicon","type":"string"},"searchServiceName":{"value":"gptkb-jnpurrdbdxfms","type":"string"},"searchServiceResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"searchServiceSemanticRankerLevel":{"value":"free","type":"string"},"searchServiceSkuName":{"value":"basic","type":"string"},"speechServiceSkuName":{"value":"S0","type":"string"},"storageAccountName":{"value":"stjnpurrdbdxfms","type":"string"},"storageContainerName":{"value":"azd","type":"string"},"storageResourceGroupName":{"value":"rg-wabrez-azd-search-demo","type":"string"},"storageSkuName":{"value":"Standard_LRS","type":"string"},"useApplicationInsights":{"value":true,"type":"bool"},"useAuthentication":{"value":false,"type":"bool"},"useChatHistoryBrowser":{"value":false,"type":"bool"},"useChatHistoryCosmos":{"value":false,"type":"bool"},"useGPT4V":{"value":false,"type":"bool"},"usePrivateEndpoint":{"value":false,"type":"bool"},"useSpeechInputBrowser":{"value":false,"type":"bool"},"useSpeechOutputAzure":{"value":false,"type":"bool"},"useSpeechOutputBrowser":{"value":false,"type":"bool"},"useVectors":{"value":true,"type":"bool"},"webAppExists":{"value":false,"type":"bool"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.App/containerApps/capps-backend-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.App/managedEnvironments/wabrez-azd-search-demo-aca-env"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/02b3095c-ac38-5f1b-8fa5-c35023b21dcd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/0935b144-e48e-546b-9eed-f077eccd1786"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/0ed24f40-208f-5263-9b98-963a672bd676"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/1f3e713f-06c3-5a57-97d6-c172c8f4c08c"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/3a4705f7-ca27-5bfe-8ddb-b4731908255c"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/8d8e0651-00db-54ba-aef1-7687839835a0"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/92cc4b77-3ad4-5321-9ce6-f329e0d13224"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/b84dafdc-58af-59b5-8472-d71d93ed75c1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/bdf589b2-178c-5067-b1c7-bb6f8e2aa9f7"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/be486ea1-4311-54a3-ad9a-9a91a90428e8"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/d551f488-8c05-5f22-b539-9b6cf682d27e"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Authorization/roleAssignments/ea32d44d-769d-5340-a7d1-88ae5bbdca98"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-di-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-jnpurrdbdxfms/deployments/chat"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.CognitiveServices/accounts/cog-jnpurrdbdxfms/deployments/embedding"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.ContainerRegistry/registries/wabrezazdsearchdemoacrjnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.ContainerRegistry/registries/wabrezazdsearchdemoacrjnpurrdbdxfms/providers/Microsoft.Authorization/roleAssignments/1e4e6094-56d9-5771-9b67-25a3260c9e5d"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Insights/components/appi-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wabrez-azd-search-demo-aca-identity"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.OperationalInsights/workspaces/log-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Portal/dashboards/dash-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Search/searchServices/gptkb-jnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Search/searchServices/gptkb-jnpurrdbdxfms/providers/Microsoft.Insights/diagnosticSettings/gptkb-jnpurrdbdxfms-diagnostics"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms/blobServices/default/containers/azd"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-azd-search-demo/providers/Microsoft.Storage/storageAccounts/stjnpurrdbdxfms/blobServices/default/containers/content"}],"failedResources":[],"correlationId":"976dda5cc09ffd8cc6bceba54f35c287"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-11-14T16:54:02.4438726Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-14T19:40:53.09928Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-wabrez-azd-search-demo","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-wabrez-azd-search-demo"},{"location":"eastus2","tags":{"azd-env-name":"mhhh","azd-provision-param-hash":"b26315bc14dc989a8ac6801fc21f0b7d3a2e361b9331830bf3a3ddabb579289f","azd-provision-template-hash":"13275230192125173794"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mhhh-25022605ey1lx","duration":"PT35M58.0974594S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"d49f923c-75c3-4db6-bd3f-9ac06a937698"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-ndwnj3ao2bihc"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-ndwnj3ao2bihc"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrndwnj3ao2bihc.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-ndwnj3ao2bihc"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrndwnj3ao2bihc"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-ndwnj3ao2bihc"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"gentlepond-871ea8b7.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mhhh","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc/providers/Microsoft.Authorization/roleAssignments/604e9f53-8987-55ce-8aab-edf674352a70"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ContainerRegistry/registries/acrndwnj3ao2bihc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ContainerRegistry/registries/acrndwnj3ao2bihc/providers/Microsoft.Authorization/roleAssignments/6988ea97-ecac-5158-b09e-b2a00d62773d"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-ndwnj3ao2bihc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.OperationalInsights/workspaces/law-ndwnj3ao2bihc"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-ndwnj3ao2bihc cannot be deleted because it still contains 2 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh/providers/Microsoft.App/managedEnvironments/cae-ndwnj3ao2bihc"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhhh"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''283a3d35a9a0b02c878b2630945103fe''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"283a3d35a9a0b02c878b2630945103fe"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-26T05:51:03.9231403Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T05:51:03.9231403Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mhhh","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mhhh"},{"location":"eastus2","tags":{"azd-env-name":"mhddd","azd-provision-param-hash":"572efce0c790e064d18ab4ef53aed87350a3ff97ec463d07dffd6a6f340af005","azd-provision-template-hash":"13275230192125173794"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mhddd-25022605fpfn2","duration":"PT31M14.2983365S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"e70583af-5536-4ba6-b416-cd394c970be8"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-kyfclh6bvypzq"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-kyfclh6bvypzq"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrkyfclh6bvypzq.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-kyfclh6bvypzq"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrkyfclh6bvypzq"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-kyfclh6bvypzq"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"lemoncliff-69351c12.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mhddd","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq/providers/Microsoft.Authorization/roleAssignments/2756bb89-417e-5672-aa1b-b982b11349e4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ContainerRegistry/registries/acrkyfclh6bvypzq"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ContainerRegistry/registries/acrkyfclh6bvypzq/providers/Microsoft.Authorization/roleAssignments/3729a5d7-b6cb-535a-bef2-3986a41fbc69"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-kyfclh6bvypzq"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.OperationalInsights/workspaces/law-kyfclh6bvypzq"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-kyfclh6bvypzq cannot be deleted because it still contains 2 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd/providers/Microsoft.App/managedEnvironments/cae-kyfclh6bvypzq"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhddd"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''ad4f627a6c862fca65212cd4d70ea317''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"ad4f627a6c862fca65212cd4d70ea317"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-26T05:53:39.6448477Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T05:53:39.6448477Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mhddd","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mhddd"},{"location":"eastus2","tags":{"azd-env-name":"mhbbb","azd-provision-param-hash":"d07d8376b3967f7319274c965e1e1933c528a1eb02d9f74a27ab0f14334bb1d3","azd-provision-template-hash":"7751854598740409575"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mhbbb-25022605fv1xu","duration":"PT31M18.0312503S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"34bd6f4b-9564-494d-9d01-1d505b1688f9"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-eikdrszsumew4"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-eikdrszsumew4"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acreikdrszsumew4.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-eikdrszsumew4"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acreikdrszsumew4"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-eikdrszsumew4"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"politeforest-b230409b.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mhbbb","type":"string"},"goversion":{"value":"1.22","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4/providers/Microsoft.Authorization/roleAssignments/7d061f4e-4247-5380-919c-b9f27c58ef06"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ContainerRegistry/registries/acreikdrszsumew4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ContainerRegistry/registries/acreikdrszsumew4/providers/Microsoft.Authorization/roleAssignments/1ebfbf86-4e11-5e6e-ab1b-d9ba9fdeb0f5"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-eikdrszsumew4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.OperationalInsights/workspaces/law-eikdrszsumew4"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-eikdrszsumew4 cannot be deleted because it still contains 1 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb/providers/Microsoft.App/managedEnvironments/cae-eikdrszsumew4"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhbbb"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''409eeaadbd179a5572523b7dd5352c26''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"409eeaadbd179a5572523b7dd5352c26"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-26T05:54:11.7928133Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T05:54:11.7928133Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mhbbb","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mhbbb"},{"location":"eastus2","tags":{"azd-env-name":"mh2","azd-provision-param-hash":"3c3f5a8f918e5ce850e58eca4304958a850ee1b6e4384628e44b0b50c2d7de7e","azd-provision-template-hash":"357129416473313743"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mh2-25022702f9gw0","duration":"PT2M19.50483S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_LOCATION":{"type":"String","value":"eastus2"},"azurE_TENANT_ID":{"type":"String","value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}},"parameters":{"environmentName":{"value":"mh2","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/3335baf5-b641-58ee-9fc6-5854aa3724c0"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/35953083-2141-5c3a-a1e2-3fcd68454f42"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/3a17180f-e2e6-521f-ba5d-e946b505e6b0"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/61f4fb2e-eb8c-5e77-9217-0e0f40e4ba89"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/768ff0ee-a766-5302-9369-9329d982b006"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/7ffb4460-db8a-5d16-9fca-7752de5eb862"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleAssignments/d4b3de2a-7c5b-5257-a200-21b5adc01edd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/catalogs/Example"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/environmentTypes/Dev"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/environmentTypes/Prod"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/environmentTypes/Test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/devcenters/dc-contoso-ygvsyzyfgq7xy/providers/Microsoft.Insights/diagnosticSettings/logs"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Dev"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Prod"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/environmentTypes/Test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-1/providers/Microsoft.Authorization/roleAssignments/cdd969d8-5219-5ca6-858a-909f82596155"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Dev"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Prod"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/environmentTypes/Test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.DevCenter/projects/Project-2/providers/Microsoft.Authorization/roleAssignments/6218bd55-f3c3-5831-b14e-50a44658b34a"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh2/providers/Microsoft.OperationalInsights/workspaces/law-ygvsyzyfgq7xy"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"7f12b5558bb5d3e49aee5743dc3a04db"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-02-27T02:52:08.7360368Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T02:52:08.7360368Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mh2","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mh2"},{"location":"eastus2","tags":{"azd-env-name":"mh8","azd-provision-param-hash":"958d658304adad0a0c4843c201118547045290fdbefd97e495e5c2e9f2200266","azd-provision-template-hash":"13275230192125173794"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-mh8-25031208ebeko","duration":"PT1H2M54.6068916S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"4d76c092-69b4-4fdf-ad87-4ac73a4bfa17"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-bdkvro7p47j7o"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-bdkvro7p47j7o"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrbdkvro7p47j7o.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-bdkvro7p47j7o"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrbdkvro7p47j7o"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-bdkvro7p47j7o"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"proudcoast-4924119a.eastus2.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"mh8","type":"string"},"location":{"value":"eastus2","type":"string"},"principalId":{"value":"c0bce7a3-9546-4ae5-95ca-e7eb7c6b2d09","type":"string"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8"},{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o/providers/Microsoft.Authorization/roleAssignments/db0093fa-1620-523d-bf14-25e924e61d61"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ContainerRegistry/registries/acrbdkvro7p47j7o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ContainerRegistry/registries/acrbdkvro7p47j7o/providers/Microsoft.Authorization/roleAssignments/eba66cea-8436-50a0-8692-a9e465b565bf"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-bdkvro7p47j7o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.OperationalInsights/workspaces/law-bdkvro7p47j7o"}],"failedResources":[{"error":{"code":"ManagedEnvironmentHasContainerApps","message":"The specified environment cae-bdkvro7p47j7o cannot be deleted because it still contains 1 ContainerApps"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8/providers/Microsoft.App/managedEnvironments/cae-bdkvro7p47j7o"},{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh8"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''b88d09fe2ff8d9a501fba2958ccf7c6f''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"b88d09fe2ff8d9a501fba2958ccf7c6f"},"systemData":{"createdBy":"v-menghchen@microsoft.com","createdByType":"User","createdAt":"2025-03-12T08:48:55.0398907Z","lastModifiedBy":"v-menghchen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-12T08:48:55.0398907Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-mh8","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-mh8"},{"location":"eastus2","tags":{"azd-env-name":"azdtest-da768f3","azd-provision-param-hash":"53f961664156ef5d1861b6246896e3e21d9bbc59cf310fb08e23df6b96d69b13","azd-provision-template-hash":"15213980796692521993"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-da768f3-250825214wc40","duration":"PT1H59.920463S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3/providers/Microsoft.Storage/storageAccounts/stsp32mmu6ymy5e"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stsp32mmu6ymy5e"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"azdtest-da768f3","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"eastus2","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3/providers/Microsoft.Storage/storageAccounts/stsp32mmu6ymy5e"}],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-da768f3"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''df816bab2783ae3a4b3f2500ca9767fa''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"df816bab2783ae3a4b3f2500ca9767fa"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-25T21:16:43.4932047Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-25T21:16:43.4932047Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-da768f3","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-da768f3"},{"location":"eastus2","tags":{"azd-env-name":"azdtest-dfe1ec5","azd-provision-param-hash":"1fe3797ccf544eeb7dd83ec3f4d1b85d6f6e8bb6b5b77b9c1c36a61f30692888","azd-provision-template-hash":"15213980796692521993"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-dfe1ec5-250825218irqt","duration":"PT1H1M12.6561673S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5/providers/Microsoft.Storage/storageAccounts/st7y7iw65cvkmco"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st7y7iw65cvkmco"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"azdtest-dfe1ec5","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"eastus2","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5/providers/Microsoft.Storage/storageAccounts/st7y7iw65cvkmco"}],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-dfe1ec5"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''8618b6ec94d10d17d3544a97d64879fb''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"8618b6ec94d10d17d3544a97d64879fb"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-25T21:29:06.8870876Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-25T21:29:06.8870876Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-dfe1ec5","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-dfe1ec5"},{"location":"eastus2","tags":{"azd-env-name":"azdtest-w4abfd7","azd-layer-name":"","azd-provision-param-hash":"94f737637b068d81feb5eddf882ffc6d0f1aee3e94e2ec426e8b61580c00e907","azd-provision-template-hash":"8438524736352338141"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w4abfd7-260105229oz1t","duration":"PT31.1651213S","denySettings":{"mode":"none","applyToChildScopes":false,"excludedPrincipals":[],"excludedActions":[]},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfyii2xg46fppk"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"azdtest-w4abfd7","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"eastus2","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"b65a256a323433d1605771aeac2eda3d"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2026-01-05T22:33:06.1122325Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-05T22:33:06.1122325Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-w4abfd7"},{"location":"westus3","tags":{"azd-env-name":"weilim-contoso","azd-provision-param-hash":"67e51988a40dfe0260d1f3b156a9e44055ac6efb3aea96d98d41eb9a65413c35","azd-provision-template-hash":"9645266646719847105"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-contoso-25031223cejn6","duration":"PT55.7402577S","denySettings":{"mode":"none","applyToChildScopes":false},"parameters":{"environmentName":{"value":"weilim-contoso","type":"string"},"location":{"value":"westus3","type":"string"},"openAiApiVersion":{"value":"2023-07-01-preview","type":"string"},"openAiDeploymentName":{"value":"gpt-4o-mini","type":"string"},"openAiEmbeddingDeploymentName":{"value":"text-embedding-ada-002","type":"string"},"principalId":{"value":"43bb7435-f8c4-4342-9788-fd15e454ea12","type":"string"},"useApplicationInsights":{"value":true,"type":"bool"},"useContainerRegistry":{"value":true,"type":"bool"},"useSearch":{"value":true,"type":"bool"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/5938f9db-3921-56e6-a2df-85b4e77161cd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/c95954f3-085c-5362-9822-041459b53d53"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/11c4862a-d1c7-565e-ba0f-66a79239ffcd"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Insights/components/appi-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.KeyVault/vaults/kv-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/queueServices/default/queues/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/fileServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/queueServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/blobServices/default/containers/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/blobServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk/tableServices/default"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Storage/storageAccounts/sthbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.OperationalInsights/workspaces/log-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.ContainerRegistry/registries/crhbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/638c1997-8e6e-5ad2-849e-054921610572"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-hbyydiyhbi2dk"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/5bc2d8c8-06b7-5bf7-8ad6-a1cefc2e3d2a"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/6946675a-d185-5357-838e-c7dd137c6a6b"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Authorization/roleAssignments/6d058cae-2ce0-560c-8411-ea4492f5ca2b"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[],"failedResources":[{"error":{"code":"ResourceDeploymentCancelled","message":"The resource deployment was cancelled."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-contoso-hbyydiyhbi2dk"},{"error":{"code":"ResourceDeploymentCancelled","message":"The resource deployment was cancelled."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.CognitiveServices/accounts/aoai-hbyydiyhbi2dk"},{"error":{"code":"StampNotFound","message":"SKU ''standard'' cannot be provisioned in ''westus3'' at this time RequestId: e37d0201-14d3-433e-4e04-cc081e880526"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-contoso/providers/Microsoft.Search/searchServices/srch-hbyydiyhbi2dk"}],"error":{"code":"DeploymentStackDeploymentFailed","message":"One or more resources could not be deployed. Correlation id: ''e37d020114d3433e4e04cc081e880526''.","details":[{"code":"DeploymentFailed","message":"Could not deploy the specified template successfully. DeploymentId ''/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-contoso-25031223cejn6'' was canceled."}]},"correlationId":"e37d020114d3433e4e04cc081e880526"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-03-12T23:42:22.7965066Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-12T23:42:22.7965066Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-contoso","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-contoso"},{"location":"westus3","tags":{"azd-env-name":"weilim-stgds","azd-provision-param-hash":"f8159dee115136db44fb87d9207ec71087a4b6c06f92b63ed46040234262ef34","azd-provision-template-hash":"15213980796692521993"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-stgds-250825220o2h8","duration":"PT1H7M39.7324635S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds/providers/Microsoft.Storage/storageAccounts/stktq6doertscuu"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stktq6doertscuu"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"weilim-stgds","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"westus3","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"deleteFailed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds"}],"provisioningState":"failed","detachedResources":[],"deletedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds/providers/Microsoft.Storage/storageAccounts/stktq6doertscuu"}],"failedResources":[{"error":{"code":"ResourceDeletionBypassed","target":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds","message":"Deletion of this resource was bypassed because of a failure in another resource deletion."},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-stgds"}],"error":{"code":"DeploymentStackDeleteResourcesFailed","message":"One or more resources could not be deleted. Correlation id: ''18727d622f36209fc4545bf0f99df0c7''.","details":[{"code":"DeploymentStackDeleteResourcesFailed","message":"An error occurred while deleting resources. These resources are still present in the stack but can be deleted manually. Please see the FailedResources property for specific error information. Deletion failures that are known limitations are documented here: https://aka.ms/DeploymentStacksKnownLimitations"}]},"correlationId":"18727d622f36209fc4545bf0f99df0c7"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-25T22:02:16.8342555Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-08-25T22:02:16.8342555Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-stgds","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-stgds"},{"location":"westus3","tags":{"azd-env-name":"weilim-separate","azd-layer-name":"","azd-provision-param-hash":"5a7ddbced9794c8e5adcc7858c046a8d11fe79c5f12d644da9059df055a453c8","azd-provision-template-hash":"14439921980320776419"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-separate-250912209f268","duration":"PT1M55.9118193S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"cr5ffc5gcbss5ty"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-5ffc5gcbss5ty"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"cr5ffc5gcbss5ty.azurecr.io"}},"parameters":{"environmentName":{"value":"weilim-separate","type":"string"},"location":{"value":"westus3","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate/providers/Microsoft.App/managedEnvironments/cae-5ffc5gcbss5ty"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate/providers/Microsoft.ContainerRegistry/registries/cr5ffc5gcbss5ty"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-separate/providers/Microsoft.OperationalInsights/workspaces/log-5ffc5gcbss5ty"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"376e560958e1fb87245641030490b486"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-08-27T19:25:31.8205068Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-12T20:32:10.979566Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-separate","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-separate"},{"location":"westus3","tags":{"azd-env-name":"weilim-test","azd-provision-param-hash":"195be2ae46fde8674cb7b4f87680378e1787a04165049eced249f0563a34911b","azd-provision-template-hash":"12347849690477709533"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-test-250909235u2q8","duration":"PT2M16.7332149S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crvfutwedbxmy32"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-vfutwedbxmy32"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crvfutwedbxmy32.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-vfutwedbxmy32.whitebush-6158fb4c.westus3.azurecontainerapps.io"}},"parameters":{"environmentName":{"value":"weilim-test","type":"string"},"location":{"value":"westus3","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.App/containerApps/ca-vfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.App/managedEnvironments/cae-vfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.ContainerRegistry/registries/crvfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.ContainerRegistry/registries/crvfutwedbxmy32/providers/Microsoft.Authorization/roleAssignments/eb6f4479-e7df-5759-b1db-7ab5cd7dfcbc"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-vfutwedbxmy32"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test/providers/Microsoft.OperationalInsights/workspaces/log-vfutwedbxmy32"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"e4a307b3e0b737dd13cb20eefadbc695"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-09-09T23:19:55.5331394Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-09T23:19:55.5331394Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-test","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-test"},{"location":"westus3","tags":{"azd-env-name":"weilim-funcman","azd-layer-name":"asd","azd-provision-param-hash":"3749ac62dc30e3ee2e67988c9b4d844ed23c92ebd45f7b1a96be67c7e7eb6320","azd-provision-template-hash":"11038868313691392576"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-weilim-funcman-asd-250911225up7h","duration":"PT47.570476S","denySettings":{"mode":"none","applyToChildScopes":false},"outputs":{"azurE_RESOURCE_COMPOSE_GPT_4O_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman/providers/Microsoft.CognitiveServices/accounts/cog-3zj267mjuv3je/deployments/compose-gpt-4o"}},"parameters":{"environmentName":{"value":"weilim-funcman","type":"string"},"location":{"value":"westus3","type":"string"},"principalId":{"value":"43bb7435-f8c4-4342-9788-fd15e454ea12","type":"string"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman/providers/Microsoft.CognitiveServices/accounts/cog-3zj267mjuv3je"},{"status":"managed","denyStatus":"none","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-funcman/providers/Microsoft.CognitiveServices/accounts/cog-3zj267mjuv3je/deployments/compose-gpt-4o"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"165adf1b30122f701613d8114e672d1c"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2025-09-11T22:20:00.0223678Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-11T22:20:00.0223678Z"},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-weilim-funcman-asd","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-weilim-funcman-asd"}]}' + body: '{"value":[{"location":"eastus2","tags":{"azd-env-name":"azdtest-d155b60","azd-layer-name":"","azd-provision-param-hash":"6a82f05f67efe7ecbf7a645b02e758abe7b8f6645f44c26e1de22b5b9b567c47","azd-provision-template-hash":"4488259817381607990"},"properties":{"actionOnUnmanage":{"resources":"delete","resourceGroups":"delete","managementGroups":"delete","resourcesWithoutDeleteSupport":"fail"},"deploymentId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d155b60-260409184ktjg","duration":"PT1M14.2498195S","denySettings":{"mode":"none","applyToChildScopes":false,"excludedPrincipals":[],"excludedActions":[]},"outputs":{"nullableParamOutput":{"type":"String"},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stljhhi4m4upgsu"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}},"arraY_PARAM":{"type":"Array","value":[]},"objecT_PARAM":{"type":"Object","value":{}}},"parameters":{"boolTagValue":{"value":false,"type":"bool"},"environmentName":{"value":"azdtest-d155b60","type":"string"},"intTagValue":{"value":678,"type":"int"},"location":{"value":"eastus2","type":"string"},"secureValue":{"value":"","type":"securestring"}},"resources":[{"status":"managed","denyStatus":"none","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60"},{"status":"managed","denyStatus":"none","id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu"}],"provisioningState":"succeeded","detachedResources":[],"deletedResources":[],"failedResources":[],"correlationId":"28cde718a413bc295ce592e23cd41fb2"},"systemData":{"createdBy":"shboyer@microsoft.com","createdByType":"User","createdAt":"2026-04-09T18:15:37.4828453Z","lastModifiedBy":"shboyer@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:15:37.4828453Z"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60","type":"Microsoft.Resources/deploymentStacks","name":"azd-stack-azdtest-d155b60"}]}' headers: Cache-Control: - no-cache Content-Length: - - "117070" + - "2654" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:34:00 GMT + - Thu, 09 Apr 2026 18:16:58 GMT Expires: - "-1" Pragma: @@ -844,25 +841,24 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 + - 40ee186426248dde07cb3782a9054c17 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/b8f06aa1-002e-41c4-aa8d-34e5e1f0682a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/7a64b1d8-01ea-4fa8-a798-4c183d3b782a X-Ms-Original-Request-Ids: - - a7b1dffb-acab-4923-bc99-ef0c18090e5b - - 1ca72274-3777-452c-ad48-6ed7e0590405 + - 254d5764-38ad-480d-9b2c-76bcd7f2c604 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 96027bf4-bc6d-4d97-b22d-ecb8f9b68043 + - c34d502a-8940-46b3-8c52-75bb47b68408 X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223400Z:96027bf4-bc6d-4d97-b22d-ecb8f9b68043 + - EASTUS2:20260409T181658Z:c34d502a-8940-46b3-8c52-75bb47b68408 X-Msedge-Ref: - - 'Ref A: 554B4365D5184610BED8BE89E66D72AB Ref B: MWH011020809042 Ref C: 2026-01-05T22:34:00Z' + - 'Ref A: C600597CA6B64009983C843E52FA3133 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:16:58Z' status: 200 OK code: 200 - duration: 377.694ms + duration: 95.974958ms - id: 12 request: proto: HTTP/1.1 @@ -884,10 +880,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7?api-version=2024-03-01 + - 40ee186426248dde07cb3782a9054c17 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60?api-version=2024-03-01 method: GET response: proto: HTTP/2.0 @@ -895,18 +891,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3801 + content_length: 3965 uncompressed: false - body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-w4abfd7\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"94f737637b068d81feb5eddf882ffc6d0f1aee3e94e2ec426e8b61580c00e907\",\r\n \"azd-provision-template-hash\": \"8438524736352338141\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azd-stack-azdtest-w4abfd7-260105229oz1t\",\r\n \"duration\": \"PT31.1651213S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"nullableParamOutput\": {\r\n \"type\": \"String\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stfyii2xg46fppk\"\r\n },\r\n \"string\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bool\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"int\": {\r\n \"type\": \"Int\",\r\n \"value\": 1234\r\n },\r\n \"array\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n },\r\n \"arraY_INT\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n 1,\r\n 2,\r\n 3\r\n ]\r\n },\r\n \"arraY_STRING\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n \"elem1\",\r\n \"elem2\",\r\n \"elem3\"\r\n ]\r\n },\r\n \"object\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"foo\": \"bar\",\r\n \"inner\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"array\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-w4abfd7\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7\"\r\n },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4abfd7/providers/Microsoft.Storage/storageAccounts/stfyii2xg46fppk\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"b65a256a323433d1605771aeac2eda3d\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"hemarina@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-01-05T22:33:06.1122325Z\",\r\n \"lastModifiedBy\": \"hemarina@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-01-05T22:33:06.1122325Z\"\r\n },\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-w4abfd7\"\r\n}" + body: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"azd-env-name\": \"azdtest-d155b60\",\r\n \"azd-layer-name\": \"\",\r\n \"azd-provision-param-hash\": \"6a82f05f67efe7ecbf7a645b02e758abe7b8f6645f44c26e1de22b5b9b567c47\",\r\n \"azd-provision-template-hash\": \"4488259817381607990\"\r\n },\r\n \"properties\": {\r\n \"actionOnUnmanage\": {\r\n \"resources\": \"delete\",\r\n \"resourceGroups\": \"delete\",\r\n \"managementGroups\": \"delete\",\r\n \"resourcesWithoutDeleteSupport\": \"fail\"\r\n },\r\n \"deploymentId\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azd-stack-azdtest-d155b60-260409184ktjg\",\r\n \"duration\": \"PT1M14.2498195S\",\r\n \"denySettings\": {\r\n \"mode\": \"none\",\r\n \"applyToChildScopes\": false,\r\n \"excludedPrincipals\": [],\r\n \"excludedActions\": []\r\n },\r\n \"outputs\": {\r\n \"nullableParamOutput\": {\r\n \"type\": \"String\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_ID\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu\"\r\n },\r\n \"azurE_STORAGE_ACCOUNT_NAME\": {\r\n \"type\": \"String\",\r\n \"value\": \"stljhhi4m4upgsu\"\r\n },\r\n \"string\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bool\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"int\": {\r\n \"type\": \"Int\",\r\n \"value\": 1234\r\n },\r\n \"array\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n },\r\n \"arraY_INT\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n 1,\r\n 2,\r\n 3\r\n ]\r\n },\r\n \"arraY_STRING\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n \"elem1\",\r\n \"elem2\",\r\n \"elem3\"\r\n ]\r\n },\r\n \"object\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"foo\": \"bar\",\r\n \"inner\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"array\": [\r\n true,\r\n \"abc\",\r\n 1234\r\n ]\r\n }\r\n },\r\n \"arraY_PARAM\": {\r\n \"type\": \"Array\",\r\n \"value\": []\r\n },\r\n \"objecT_PARAM\": {\r\n \"type\": \"Object\",\r\n \"value\": {}\r\n }\r\n },\r\n \"parameters\": {\r\n \"boolTagValue\": {\r\n \"value\": false,\r\n \"type\": \"bool\"\r\n },\r\n \"environmentName\": {\r\n \"value\": \"azdtest-d155b60\",\r\n \"type\": \"string\"\r\n },\r\n \"intTagValue\": {\r\n \"value\": 678,\r\n \"type\": \"int\"\r\n },\r\n \"location\": {\r\n \"value\": \"eastus2\",\r\n \"type\": \"string\"\r\n },\r\n \"secureValue\": {\r\n \"value\": \"\",\r\n \"type\": \"securestring\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60\"\r\n },\r\n {\r\n \"status\": \"managed\",\r\n \"denyStatus\": \"none\",\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-d155b60/providers/Microsoft.Storage/storageAccounts/stljhhi4m4upgsu\"\r\n }\r\n ],\r\n \"provisioningState\": \"succeeded\",\r\n \"detachedResources\": [],\r\n \"deletedResources\": [],\r\n \"failedResources\": [],\r\n \"correlationId\": \"28cde718a413bc295ce592e23cd41fb2\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"shboyer@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2026-04-09T18:15:37.4828453Z\",\r\n \"lastModifiedBy\": \"shboyer@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2026-04-09T18:15:37.4828453Z\"\r\n },\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60\",\r\n \"type\": \"Microsoft.Resources/deploymentStacks\",\r\n \"name\": \"azd-stack-azdtest-d155b60\"\r\n}" headers: Cache-Control: - no-cache Content-Length: - - "3801" + - "3965" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:34:01 GMT + - Thu, 09 Apr 2026 18:16:58 GMT Expires: - "-1" Pragma: @@ -918,22 +914,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 + - 40ee186426248dde07cb3782a9054c17 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/4a061eef-cf52-43b2-88b2-37c3c6ccc887 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/3fa2ea4a-b402-4ef5-a35c-6cb7cf89c010 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 794b5dc8-63c6-4f15-8924-fe926411bdb0 + - f7c7b2f0-f3d1-4124-a9e1-6f93418890af X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223401Z:863a273e-99b3-47a6-8342-6053bf4198c2 + - EASTUS:20260409T181658Z:cf7d573c-c031-43ac-92e6-2060bda471b7 X-Msedge-Ref: - - 'Ref A: 25D47723F49543FAA5D199A138CC3341 Ref B: MWH011020809042 Ref C: 2026-01-05T22:34:00Z' + - 'Ref A: 1464D5923F57481DB3FD5A441E2DAF38 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:16:58Z' status: 200 OK code: 200 - duration: 290.9705ms + duration: 116.632084ms - id: 13 request: proto: HTTP/1.1 @@ -955,10 +951,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-w4abfd7?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete + - 40ee186426248dde07cb3782a9054c17 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deploymentStacks/azd-stack-azdtest-d155b60?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete method: DELETE response: proto: HTTP/2.0 @@ -971,13 +967,13 @@ interactions: body: "" headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/164a815f-cf3e-4107-85e7-0b87a5229376?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639032492424775841&c=MIIHhzCCBm-gAwIBAgITfAlUi7iAnbsbxEA4ngAACVSLuDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE3MDAxMzUyWhcNMjYwNDE1MDAxMzUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVvYrmN0LCC719Q3nXJvt4uXc9n2LDkbLdhqU1ZZIqXRdqXKqc9eOaUT2mRMpzJqG3DkugEfX7Nw8bVJitWe4cuXODNRonoinhfeF7iB24Ni3w5Vw42MpUpUGjYlZ9S8RCPdfu-tm_6lUUjZGT1UgEcE4l9h49m-Jf6snRiPU7aOozbchkwa3XznLovQcE3xV5ltctPLNmqlD5D78zWVE3wSICwVIwUnctZhbbn8AXwt_x2m4_h0wjuvPwR2BgGn1a5QUJSOnQuwDcaPsYFU4RfyMltzPSZr_FoRoVZzkV9k-r40fumjkDViQrMDSm0Zcg-W2Y2Aoex7otPtacfaNECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBRtyRqqNHNl-tE5vAN2dbRxFxQgUTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHaaglMFXSi7lvSHyTclKxKba1hFprYFQVgr_DW45StNOSIkV3_IRl2adaKUYgAW19bgubgtdrtL0A69bhRblh0ms92u0UVr_WadgtcAR97pxjZWozSK4HQHfDeK-NcLN8r-jwN4U8Dhusj4ZCJxCjCUYc-4M2itXj-2M8ilwDkr5m45RnBiK239bK_VWL59ZuXV1GYtMqoff9eJP5I5UPKuw8KG6wmWeLEtQaRlTmwl9fug5IiNwWBjzTlb38vB1nrqmyHyoz9O5NqF7x0jK1yKEb3WKpywdZHTO4o8A0ErwLab9V8bL5EZmk15bjZrJm1B8v4jKxax2-vQUFnbRaM&s=mM-X7gBMgShWUoxtZrjkwdyuouLOgI4E_cnNSTjCb5_Vr_kqjSeIWnp4nFd1LgOPt8WVh8pn71cbBdndFQntUQgemCOuoWSR6tlN1NIzYbt17OvLHXWB-7aQlZqfLiyxIR_ZKQvybJC6iyJdrexi3q0Lp-eKpJr0hfbLFWcuX6Vjf_RI3sIjkRqLXnGPWqh8CKmvvkNHQkdn_dAkf3PBFXDZQ6Qxj9XIJ3f68Ddi6bbRIKr0kpg_jBd2mPI4UGlzS1sXwM5sNx2U11vn4-iZORSDmI-Oh8jF6DrqdsVlklbJNCXvcz9wdgeUg2r8VDD2UZ1OHpTYHJSn_803P-A_Ew&h=G4nNY2c2AtWNFj8vPV3uO8FtGaTOFKzbr1cSrhAJMSc + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/fef2ae7b-1084-4c29-b3fa-d43cfb1d2332?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639113554192442762&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=ms-4XTIsCwpIKLFg1aLdBzngAffd8RoDjM__IJI7HADlmzAIDqr4oy0GIVLHpLjUANfI0DG1k3eLdeTf__Oy78T3j8xIVxCh1C3yp6AoP_q2_IdUrypKj7G4Hy8IF9jwWX7cpC2bNUmw8yXY6JlObmU5YpjQh1tOG_KH5a5MezMvLXnWTuwyl-t7OpTGVwYNChVXZfwMqLQl8IV8FajaqSYcUI4ZHrQ7hiPvJjBRSHDgR1cTneG-pV3h1tflAOJtQPr1u3kJTRZo-10w9qFA63f6c7p3jATdhYtVFUv2yAlyUK5WscsPkpDxqmuPJamTp8KdEJtMCBRQGaGMRtjw9w&h=HkNz70iqs65WzGGU0zFbhfgobpW3V-HRxCTjPZf_VII Cache-Control: - no-cache Content-Length: - "0" Date: - - Mon, 05 Jan 2026 22:34:02 GMT + - Thu, 09 Apr 2026 18:16:59 GMT Expires: - "-1" Pragma: @@ -991,22 +987,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 + - 40ee186426248dde07cb3782a9054c17 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westcentralus/ba3d0cef-841a-4491-9796-bfb0936e4c60 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/b47b0849-ec92-4201-9fab-17e110c6823d X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - 9261287c-1070-4a55-8887-29dad1677254 + - d7b1df77-3cb5-497e-9947-b47739ec7207 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260105T223402Z:2c84b6e1-63df-4bfa-9978-0a7032ad8ee5 + - EASTUS2:20260409T181659Z:3546a098-9bde-42a6-8101-5f175723ee7b X-Msedge-Ref: - - 'Ref A: BB16955F6A824FD087B12DF4BAB286ED Ref B: MWH011020809042 Ref C: 2026-01-05T22:34:01Z' + - 'Ref A: ECBD84D46F6E4CABB6CC90BDC119ECA3 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:16:58Z' status: 202 Accepted code: 202 - duration: 1.3276306s + duration: 576.077041ms - id: 14 request: proto: HTTP/1.1 @@ -1026,10 +1022,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armdeploymentstacks/v1.0.1 (go1.25.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.25.0; windows/amd64) + - azsdk-go-armdeploymentstacks/v1.0.1 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/164a815f-cf3e-4107-85e7-0b87a5229376?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639032492424775841&c=MIIHhzCCBm-gAwIBAgITfAlUi7iAnbsbxEA4ngAACVSLuDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE3MDAxMzUyWhcNMjYwNDE1MDAxMzUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVvYrmN0LCC719Q3nXJvt4uXc9n2LDkbLdhqU1ZZIqXRdqXKqc9eOaUT2mRMpzJqG3DkugEfX7Nw8bVJitWe4cuXODNRonoinhfeF7iB24Ni3w5Vw42MpUpUGjYlZ9S8RCPdfu-tm_6lUUjZGT1UgEcE4l9h49m-Jf6snRiPU7aOozbchkwa3XznLovQcE3xV5ltctPLNmqlD5D78zWVE3wSICwVIwUnctZhbbn8AXwt_x2m4_h0wjuvPwR2BgGn1a5QUJSOnQuwDcaPsYFU4RfyMltzPSZr_FoRoVZzkV9k-r40fumjkDViQrMDSm0Zcg-W2Y2Aoex7otPtacfaNECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBRtyRqqNHNl-tE5vAN2dbRxFxQgUTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHaaglMFXSi7lvSHyTclKxKba1hFprYFQVgr_DW45StNOSIkV3_IRl2adaKUYgAW19bgubgtdrtL0A69bhRblh0ms92u0UVr_WadgtcAR97pxjZWozSK4HQHfDeK-NcLN8r-jwN4U8Dhusj4ZCJxCjCUYc-4M2itXj-2M8ilwDkr5m45RnBiK239bK_VWL59ZuXV1GYtMqoff9eJP5I5UPKuw8KG6wmWeLEtQaRlTmwl9fug5IiNwWBjzTlb38vB1nrqmyHyoz9O5NqF7x0jK1yKEb3WKpywdZHTO4o8A0ErwLab9V8bL5EZmk15bjZrJm1B8v4jKxax2-vQUFnbRaM&s=mM-X7gBMgShWUoxtZrjkwdyuouLOgI4E_cnNSTjCb5_Vr_kqjSeIWnp4nFd1LgOPt8WVh8pn71cbBdndFQntUQgemCOuoWSR6tlN1NIzYbt17OvLHXWB-7aQlZqfLiyxIR_ZKQvybJC6iyJdrexi3q0Lp-eKpJr0hfbLFWcuX6Vjf_RI3sIjkRqLXnGPWqh8CKmvvkNHQkdn_dAkf3PBFXDZQ6Qxj9XIJ3f68Ddi6bbRIKr0kpg_jBd2mPI4UGlzS1sXwM5sNx2U11vn4-iZORSDmI-Oh8jF6DrqdsVlklbJNCXvcz9wdgeUg2r8VDD2UZ1OHpTYHJSn_803P-A_Ew&h=G4nNY2c2AtWNFj8vPV3uO8FtGaTOFKzbr1cSrhAJMSc + - 40ee186426248dde07cb3782a9054c17 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/fef2ae7b-1084-4c29-b3fa-d43cfb1d2332?api-version=2024-03-01&bypassStackOutOfSyncError=false&unmanageAction.ManagementGroups=delete&unmanageAction.ResourceGroups=delete&unmanageAction.Resources=delete&t=639113554192442762&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=ms-4XTIsCwpIKLFg1aLdBzngAffd8RoDjM__IJI7HADlmzAIDqr4oy0GIVLHpLjUANfI0DG1k3eLdeTf__Oy78T3j8xIVxCh1C3yp6AoP_q2_IdUrypKj7G4Hy8IF9jwWX7cpC2bNUmw8yXY6JlObmU5YpjQh1tOG_KH5a5MezMvLXnWTuwyl-t7OpTGVwYNChVXZfwMqLQl8IV8FajaqSYcUI4ZHrQ7hiPvJjBRSHDgR1cTneG-pV3h1tflAOJtQPr1u3kJTRZo-10w9qFA63f6c7p3jATdhYtVFUv2yAlyUK5WscsPkpDxqmuPJamTp8KdEJtMCBRQGaGMRtjw9w&h=HkNz70iqs65WzGGU0zFbhfgobpW3V-HRxCTjPZf_VII method: GET response: proto: HTTP/2.0 @@ -1039,7 +1035,7 @@ interactions: trailer: {} content_length: 260 uncompressed: false - body: "{\r\n \"id\": \"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/164a815f-cf3e-4107-85e7-0b87a5229376\",\r\n \"name\": \"164a815f-cf3e-4107-85e7-0b87a5229376\",\r\n \"status\": \"succeeded\"\r\n}" + body: "{\r\n \"id\": \"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/locations/eastus2/deploymentStackOperationStatus/fef2ae7b-1084-4c29-b3fa-d43cfb1d2332\",\r\n \"name\": \"fef2ae7b-1084-4c29-b3fa-d43cfb1d2332\",\r\n \"status\": \"succeeded\"\r\n}" headers: Cache-Control: - no-cache @@ -1048,7 +1044,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 05 Jan 2026 22:37:51 GMT + - Thu, 09 Apr 2026 18:20:46 GMT Expires: - "-1" Pragma: @@ -1060,23 +1056,9245 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5c70ae64256fbeb840d4a87e411c4df2 + - 40ee186426248dde07cb3782a9054c17 X-Ms-Operation-Identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=547aa7c1-2f57-48d9-8969-ecf696948ca7/westus2/b350ebc7-188f-4c90-9a33-9ee7758486dd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus2/1eb9fe97-38e0-479a-bf46-0f1e1ccc42f6 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 02ce43e9-6536-48cf-866f-504213f89d09 + - 9088eb1d-f065-4e70-82a5-3ebb243b00bc X-Ms-Routing-Request-Id: - - WESTUS2:20260105T223751Z:a7fd6cf8-a3f7-43d9-abe8-66c2e6da7e1d + - EASTUS2:20260409T182047Z:fb20e1a6-ba31-4b77-a4b4-489c8cc691f6 X-Msedge-Ref: - - 'Ref A: 772DD62A90274E82A2C7C532BD97AC1D Ref B: MWH011020809042 Ref C: 2026-01-05T22:37:51Z' + - 'Ref A: E8E90941893E4A518E4870EF772599DC Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:20:47Z' + status: 200 OK + code: 200 + duration: 122.9815ms + - id: 15 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:20:47 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 18:25:47 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - a7a0c82f1a6a3c48ce5630ce257947f1de59704b + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760076-MIA + X-Timer: + - S1775758848.516592,VS0,VE49 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 145.531916ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 18:20:47 GMT + Expires: + - Thu, 09 Apr 2026 18:20:47 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: 331.884375ms + - id: 17 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:20:47 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 18:25:47 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 97a5faeae600d679f2d1f3c12f811487fa18f8fe + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760076-MIA + X-Timer: + - S1775758848.946318,VS0,VE30 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 55.5925ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 18:20:48 GMT + Expires: + - Thu, 09 Apr 2026 18:20:48 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 343.374917ms + - id: 19 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:20:48 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 18:25:48 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 6c7a8df03088c19a13c33c0865db537f9aa59bc7 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760076-MIA + X-Timer: + - S1775758848.380065,VS0,VE164 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 186.647ms + - id: 20 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 18:20:48 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 18:25:48 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - de9b26f3f7af8e10575748dc988b84fbd1983951 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760076-MIA + X-Timer: + - S1775758849.573478,VS0,VE75 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 293.9912ms + duration: 90.008583ms --- -env_name: azdtest-w4abfd7 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1767652345" +env_name: azdtest-d155b60 +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775758483" diff --git a/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml b/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml index 57796cf0bf7..060eb1e8c54 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml @@ -9,23 +9,19 @@ 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 User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2022-12-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json method: GET response: proto: HTTP/2.0 @@ -33,43 +29,3264 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 45193 + content_length: 138770 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az3"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az3"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az3"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az3"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az3"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az3"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az3"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az3"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az3"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az3"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az3"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az3"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az3"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az3"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az3"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az3"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az3"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az3"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az3"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az3"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az3"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az3"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az3"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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-az3"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Brazil","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az3"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Canary (US)","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az3"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az2"}]},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United Kingdom","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "45193" + - "138770" + 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: - - Tue, 15 Apr 2025 17:08:39 GMT + - Thu, 09 Apr 2026 19:11:25 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:16:25 GMT + Source-Age: + - "198" 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: - - c2c4215db714f73998f746cba80e7d58 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 9f2e4632-61ca-4185-ace6-5f05b9e4b047 - X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170840Z:9f2e4632-61ca-4185-ace6-5f05b9e4b047 - X-Msedge-Ref: - - 'Ref A: 131F777A69474F949C11F38502D83D0D Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:08:36Z' + X-Fastly-Request-Id: + - 2d69ca4c0d7f96e11d3d7069538811467791d9fe + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775761885.396954,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 3.0915183s + duration: 70.601166ms - id: 1 request: proto: HTTP/1.1 @@ -78,67 +3295,55 @@ 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.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?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/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1881889 + content_length: 0 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "1881889" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Tue, 15 Apr 2025 17:08:46 GMT + - Thu, 09 Apr 2026 19:11:25 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 19:11:25 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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 9b336cce-e479-4a61-8e6d-b82e701deede - X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170847Z:9b336cce-e479-4a61-8e6d-b82e701deede - X-Msedge-Ref: - - 'Ref A: 7BA09FBCB6924C86A73079AAEFC2B811 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:08:40Z' - status: 200 OK - code: 200 - duration: 6.9472237s + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 95.99875ms - id: 2 request: proto: HTTP/1.1 @@ -147,7 +3352,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -157,11 +3362,11 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&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 @@ -169,43 +3374,4338 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1146802 + content_length: 195006 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + 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" + } + } + } + ] + }, + { + "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: - - "1146802" + - "195006" + 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: - - Tue, 15 Apr 2025 17:08:50 GMT + - Thu, 09 Apr 2026 19:11:25 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:16:25 GMT + Source-Age: + - "198" 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: - - c2c4215db714f73998f746cba80e7d58 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - c8aa4f89-deab-482a-9ece-ace6ea42c0f4 - X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170851Z:c8aa4f89-deab-482a-9ece-ace6ea42c0f4 - X-Msedge-Ref: - - 'Ref A: 56ACF8C8CF5C4ABFABBC3A302573A1B8 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:08:47Z' + X-Fastly-Request-Id: + - 9b340de64a1766abb0b6cc92b40bc5aee543c6ed + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775761886.523090,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 4.1749062s + duration: 18.473834ms - id: 3 request: proto: HTTP/1.1 @@ -214,7 +7714,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -225,204 +7725,1504 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 0 uncompressed: false - body: '{"value":[]}' + body: "" headers: Cache-Control: - - no-cache + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "97962" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Tue, 15 Apr 2025 17:08:52 GMT + - Thu, 09 Apr 2026 19:11:25 GMT Expires: - - "-1" + - Thu, 09 Apr 2026 19:11:25 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - db8ecc4d-4a7c-484e-9eb7-84f784b52b47 - X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170853Z:db8ecc4d-4a7c-484e-9eb7-84f784b52b47 - X-Msedge-Ref: - - 'Ref A: A74C5535E3704577AAFF911C911648CB Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:08:51Z' - status: 200 OK - code: 200 - duration: 1.8212798s + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 51.429625ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4195 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w16f971","reference":null},"location":{"value":"eastus2","reference":null},"principalId":{"value":"d908828a-31ea-40e4-ad67-94220b3e46fb","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.35.1.8038","templateHash":"11020623976839621104"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention"}},"location":{"type":"string","minLength":1,"metadata":{"description":"Primary location for all resources"}},"principalId":{"type":"string","metadata":{"description":"Id of the user or app to assign application roles"}},"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":"2022-09-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[parameters(''principalId'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.35.1.8038","templateHash":"10968708647706629145"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"principalId":{"type":"string"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]","storageBlobDataContributorRole":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), variables(''storageBlobDataContributorRole''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[variables(''storageBlobDataContributorRole'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"}}}},"tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4195" - Content-Type: - - application/json + Referer: + - https://aka.ms/azd/extensions/registry/dev User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912/validate?api-version=2021-04-01 - method: POST + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2126 + content_length: 41722 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"},"properties":{"templateHash":"11020623976839621104","parameters":{"environmentName":{"type":"String","value":"azdtest-w16f971"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"d908828a-31ea-40e4-ad67-94220b3e46fb"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:08:54Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:08:54.1541678Z","duration":"PT0S","correlationId":"c2c4215db714f73998f746cba80e7d58","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w16f971"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc/providers/Microsoft.Authorization/roleAssignments/110ccd1d-ce31-5c76-8b7f-dc43ac5c4814"}]}}' + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "2126" + - "41722" + 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: - - Tue, 15 Apr 2025 17:08:54 GMT + - Thu, 09 Apr 2026 19:11:25 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:16:25 GMT + Source-Age: + - "198" 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: - - c2c4215db714f73998f746cba80e7d58 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - 3f941607-0bb8-481e-a32a-b4f9a8ed877f - X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170855Z:3f941607-0bb8-481e-a32a-b4f9a8ed877f - X-Msedge-Ref: - - 'Ref A: 796C7A29B6CA43D1B7F90A92F2D6FABA Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:08:53Z' + X-Fastly-Request-Id: + - 3a88c0bad154aa6db7b1802f2a8d8ed97cd48b8a + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775761886.606312,VS0,VE4 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 1.6362716s + duration: 18.997167ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4195 + content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w16f971","reference":null},"location":{"value":"eastus2","reference":null},"principalId":{"value":"d908828a-31ea-40e4-ad67-94220b3e46fb","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.35.1.8038","templateHash":"11020623976839621104"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention"}},"location":{"type":"string","minLength":1,"metadata":{"description":"Primary location for all resources"}},"principalId":{"type":"string","metadata":{"description":"Id of the user or app to assign application roles"}},"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":"2022-09-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[parameters(''principalId'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.35.1.8038","templateHash":"10968708647706629145"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"principalId":{"type":"string"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]","storageBlobDataContributorRole":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), variables(''storageBlobDataContributorRole''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[variables(''storageBlobDataContributorRole'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"}}}},"tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4195" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) - X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912?api-version=2021-04-01 - method: PUT + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1471 + content_length: 16828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"},"properties":{"templateHash":"11020623976839621104","parameters":{"environmentName":{"type":"String","value":"azdtest-w16f971"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"d908828a-31ea-40e4-ad67-94220b3e46fb"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:08:55Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-15T17:08:55.8037549Z","duration":"PT0.0002369S","correlationId":"c2c4215db714f73998f746cba80e7d58","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w16f971"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912/operationStatuses/08584568699496627118?api-version=2021-04-01&t=638803337369600209&c=MIIHpTCCBo2gAwIBAgITfwTefsNKsen_4LA9fgAEBN5-wzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI3MDY0NjExWhcNMjUwNzI2MDY0NjExWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMucALgheem6KVlWMZqpc8E7iy-Eae2swQY9l72RmRg0jOhjoJ0VwossXCw1mFrpXE7JPKsrge4DDWXUxI6Lt-PYLt51tUWcY91TR1ILmg4SqOM-RkViETcXdjfFtdRY93GYizHar0YoIqSS1qZs8eWELslFmiNA0lYx6fZxia7atyOIiV4lUru9iJkj9u-5TXCFcr_IC7Q8m2MTDNjkiqlYUywrVPMDyR4tDCEGjd_9zwhwLM2rRa3MqFfutpVCeFSM8JLRgB58iUizB25grVtAdd58_7ESn3jHBEMl5TxuSBuL5-guymp6dOVNH3LUp0dKU2ODicC3QKKHvjcDwPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTy73PML-cDadNa28r8Xm340k75nDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE1UKiqcOYsSHpOuxu1lhQc0nYFHNtT2SLUs7xiUUYZCuDWKn0DlXEszha4_vtaY9WvIbdraPTZiLcMg4_NsjdZk8ecnJzso6Df5tPOsy6Ect10HrdeH9hjXPKVt2aQMWOPpI-syenkJXckdJz2tdaH8Qpji4c2oVd5W-RlwrsKTmDvHu4REwMgO_1ERlt5wCU1grm8_tmqCTWjg2kAf7M7-19EQdAZW99Dk3VzQbmEMsy7eFe-DS7sC1NPY1RGL2AMDKIQ9l0xEr78dkQMGMTKjyFAJnBNRsXlbTi7pNJNV1cF8SZT1FgGmvopJ4L91U18rWIA00Izd7SmodPRdTbI&s=ZYYCArhKSlPuYa5Gr929anIXagJqrBirGNsW5OopjG_dwf5hKeSAfnFDkAjnSKg-dX4WLUnIennd8wmIEDpDDWT1DzTSXLR8vdLaCn3RfE-PsbQgZBO2EVEl-04Ept6mfRrCdFZWkn52XW4JYIIkYNuqBPYNSA-4L-L17SeTy6blQ_TU1nmTxNleueF5cfnMrGNP7BeqbrRl-veYVzZ-ilS0Rzc1Ba9Xrm5EHdrJbLMOd75yF5gNBUNJXmP2dLfxgcNwEwCERfxw3IfpbrKiwVrPFc7mFVowWYuEFmiTg3mTADbd_9ts1nR6SS2Fzc4adjsDf7bDgZTyYUyzSoaDlg&h=19NtHkX4P41C2Ng86iUaaQR-7rhU8C0shuieEX5x56k + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "1471" + - "16828" + 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: - - Tue, 15 Apr 2025 17:08:56 GMT + - Thu, 09 Apr 2026 19:11:25 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" Expires: - - "-1" - Pragma: - - no-cache + - Thu, 09 Apr 2026 19:16:25 GMT + Source-Age: + - "198" 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: - - c2c4215db714f73998f746cba80e7d58 - X-Ms-Deployment-Engine-Version: - - 1.309.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - d3b995ab-678a-438c-83f4-7354f609afd7 - X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170856Z:d3b995ab-678a-438c-83f4-7354f609afd7 - X-Msedge-Ref: - - 'Ref A: D58F522D97E44A978A04300545AF4B59 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:08:55Z' - status: 201 Created - code: 201 - duration: 1.5124627s + X-Fastly-Request-Id: + - 7ed3cb920620438742d49208dea9dd1c6f7067fa + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760070-MIA + X-Timer: + - S1775761886.668214,VS0,VE1 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 24.30675ms - id: 6 request: proto: HTTP/1.1 @@ -437,15 +9237,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912/operationStatuses/08584568699496627118?api-version=2021-04-01&t=638803337369600209&c=MIIHpTCCBo2gAwIBAgITfwTefsNKsen_4LA9fgAEBN5-wzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI3MDY0NjExWhcNMjUwNzI2MDY0NjExWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMucALgheem6KVlWMZqpc8E7iy-Eae2swQY9l72RmRg0jOhjoJ0VwossXCw1mFrpXE7JPKsrge4DDWXUxI6Lt-PYLt51tUWcY91TR1ILmg4SqOM-RkViETcXdjfFtdRY93GYizHar0YoIqSS1qZs8eWELslFmiNA0lYx6fZxia7atyOIiV4lUru9iJkj9u-5TXCFcr_IC7Q8m2MTDNjkiqlYUywrVPMDyR4tDCEGjd_9zwhwLM2rRa3MqFfutpVCeFSM8JLRgB58iUizB25grVtAdd58_7ESn3jHBEMl5TxuSBuL5-guymp6dOVNH3LUp0dKU2ODicC3QKKHvjcDwPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTy73PML-cDadNa28r8Xm340k75nDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE1UKiqcOYsSHpOuxu1lhQc0nYFHNtT2SLUs7xiUUYZCuDWKn0DlXEszha4_vtaY9WvIbdraPTZiLcMg4_NsjdZk8ecnJzso6Df5tPOsy6Ect10HrdeH9hjXPKVt2aQMWOPpI-syenkJXckdJz2tdaH8Qpji4c2oVd5W-RlwrsKTmDvHu4REwMgO_1ERlt5wCU1grm8_tmqCTWjg2kAf7M7-19EQdAZW99Dk3VzQbmEMsy7eFe-DS7sC1NPY1RGL2AMDKIQ9l0xEr78dkQMGMTKjyFAJnBNRsXlbTi7pNJNV1cF8SZT1FgGmvopJ4L91U18rWIA00Izd7SmodPRdTbI&s=ZYYCArhKSlPuYa5Gr929anIXagJqrBirGNsW5OopjG_dwf5hKeSAfnFDkAjnSKg-dX4WLUnIennd8wmIEDpDDWT1DzTSXLR8vdLaCn3RfE-PsbQgZBO2EVEl-04Ept6mfRrCdFZWkn52XW4JYIIkYNuqBPYNSA-4L-L17SeTy6blQ_TU1nmTxNleueF5cfnMrGNP7BeqbrRl-veYVzZ-ilS0Rzc1Ba9Xrm5EHdrJbLMOd75yF5gNBUNJXmP2dLfxgcNwEwCERfxw3IfpbrKiwVrPFc7mFVowWYuEFmiTg3mTADbd_9ts1nR6SS2Fzc4adjsDf7bDgZTyYUyzSoaDlg&h=19NtHkX4P41C2Ng86iUaaQR-7rhU8C0shuieEX5x56k + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations?api-version=2022-12-01 method: GET response: proto: HTTP/2.0 @@ -453,18 +9255,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 47870 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az1"},{"logicalZone":"2","physicalZone":"eastus-az3"},{"logicalZone":"3","physicalZone":"eastus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az1"},{"logicalZone":"2","physicalZone":"westus2-az3"},{"logicalZone":"3","physicalZone":"westus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az1"},{"logicalZone":"2","physicalZone":"australiaeast-az3"},{"logicalZone":"3","physicalZone":"australiaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az1"},{"logicalZone":"2","physicalZone":"southeastasia-az3"},{"logicalZone":"3","physicalZone":"southeastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az1"},{"logicalZone":"2","physicalZone":"northeurope-az3"},{"logicalZone":"3","physicalZone":"northeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az1"},{"logicalZone":"2","physicalZone":"swedencentral-az3"},{"logicalZone":"3","physicalZone":"swedencentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az1"},{"logicalZone":"2","physicalZone":"westeurope-az3"},{"logicalZone":"3","physicalZone":"westeurope-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az1"},{"logicalZone":"2","physicalZone":"uksouth-az3"},{"logicalZone":"3","physicalZone":"uksouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az1"},{"logicalZone":"2","physicalZone":"centralus-az3"},{"logicalZone":"3","physicalZone":"centralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az1"},{"logicalZone":"2","physicalZone":"southafricanorth-az3"},{"logicalZone":"3","physicalZone":"southafricanorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az1"},{"logicalZone":"2","physicalZone":"centralindia-az3"},{"logicalZone":"3","physicalZone":"centralindia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az1"},{"logicalZone":"2","physicalZone":"eastasia-az3"},{"logicalZone":"3","physicalZone":"eastasia-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"indonesiacentral-az3"},{"logicalZone":"3","physicalZone":"indonesiacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az1"},{"logicalZone":"2","physicalZone":"japaneast-az3"},{"logicalZone":"3","physicalZone":"japaneast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az1"},{"logicalZone":"2","physicalZone":"japanwest-az3"},{"logicalZone":"3","physicalZone":"japanwest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az1"},{"logicalZone":"2","physicalZone":"koreacentral-az3"},{"logicalZone":"3","physicalZone":"koreacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"malaysiawest-az3"},{"logicalZone":"3","physicalZone":"malaysiawest-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"newzealandnorth-az3"},{"logicalZone":"3","physicalZone":"newzealandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az1"},{"logicalZone":"2","physicalZone":"canadacentral-az3"},{"logicalZone":"3","physicalZone":"canadacentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"austriaeast-az3"},{"logicalZone":"3","physicalZone":"austriaeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"belgiumcentral-az3"},{"logicalZone":"3","physicalZone":"belgiumcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"denmarkeast-az3"},{"logicalZone":"3","physicalZone":"denmarkeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az1"},{"logicalZone":"2","physicalZone":"francecentral-az3"},{"logicalZone":"3","physicalZone":"francecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az1"},{"logicalZone":"2","physicalZone":"germanywestcentral-az3"},{"logicalZone":"3","physicalZone":"germanywestcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"italynorth-az3"},{"logicalZone":"3","physicalZone":"italynorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az1"},{"logicalZone":"2","physicalZone":"norwayeast-az3"},{"logicalZone":"3","physicalZone":"norwayeast-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"polandcentral-az3"},{"logicalZone":"3","physicalZone":"polandcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"spaincentral-az3"},{"logicalZone":"3","physicalZone":"spaincentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az3"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"mexicocentral-az3"},{"logicalZone":"3","physicalZone":"mexicocentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az1"},{"logicalZone":"2","physicalZone":"uaenorth-az3"},{"logicalZone":"3","physicalZone":"uaenorth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az1"},{"logicalZone":"2","physicalZone":"brazilsouth-az3"},{"logicalZone":"3","physicalZone":"brazilsouth-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"chilecentral-az3"},{"logicalZone":"3","physicalZone":"chilecentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"israelcentral-az3"},{"logicalZone":"3","physicalZone":"israelcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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-az1"},{"logicalZone":"2","physicalZone":"qatarcentral-az3"},{"logicalZone":"3","physicalZone":"qatarcentral-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az1"},{"logicalZone":"2","physicalZone":"eastus2-az3"},{"logicalZone":"3","physicalZone":"eastus2-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az1"},{"logicalZone":"2","physicalZone":"southcentralus-az3"},{"logicalZone":"3","physicalZone":"southcentralus-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az1"},{"logicalZone":"2","physicalZone":"westus3-az3"},{"logicalZone":"3","physicalZone":"westus3-az2"}]},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southcentralus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastus2euap"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/eastusstg"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/westus2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southafricanorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral2"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/australiaeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/jioindiawest"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/koreacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/centralindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/southindia"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/canadacentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/francecentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/germanywestcentral"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/norwayeast"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/switzerlandnorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uaenorth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/brazilsouth"}]}},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/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/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/locations/uksouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "47870" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:09:56 GMT + - Thu, 09 Apr 2026 19:11:28 GMT Expires: - "-1" Pragma: @@ -476,20 +9278,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 762dadb0-cdc0-47b2-ae40-65eca3bc8d4e + - de85d3e0-2c48-4733-a902-6dbf6d5c57a9 X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170957Z:762dadb0-cdc0-47b2-ae40-65eca3bc8d4e + - EASTUS:20260409T191129Z:de85d3e0-2c48-4733-a902-6dbf6d5c57a9 X-Msedge-Ref: - - 'Ref A: 062BC6B0C0AF4690A8FDB5D451AC4D28 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:09:57Z' + - 'Ref A: 18DF80782F49480FBFFB4E8B2676B3F0 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:28Z' status: 200 OK code: 200 - duration: 199.8937ms + duration: 1.026655458s - id: 7 request: proto: HTTP/1.1 @@ -504,15 +9306,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912?api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -520,18 +9324,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2070 + content_length: 956898 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"},"properties":{"templateHash":"11020623976839621104","parameters":{"environmentName":{"type":"String","value":"azdtest-w16f971"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"d908828a-31ea-40e4-ad67-94220b3e46fb"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:08:55Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:09:30.4545681Z","duration":"PT34.6508132S","correlationId":"c2c4215db714f73998f746cba80e7d58","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w16f971"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sts4bo56g25lnoc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc/providers/Microsoft.Authorization/roleAssignments/110ccd1d-ce31-5c76-8b7f-dc43ac5c4814"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2070" + - "956898" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:09:57 GMT + - Thu, 09 Apr 2026 19:11:33 GMT Expires: - "-1" Pragma: @@ -543,20 +9347,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - facc8b07-22d3-4fdb-9b34-625ae6c173e4 + - a505f249-3c69-4a9d-a120-60f720690e2e X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170957Z:facc8b07-22d3-4fdb-9b34-625ae6c173e4 + - EASTUS2:20260409T191133Z:a505f249-3c69-4a9d-a120-60f720690e2e X-Msedge-Ref: - - 'Ref A: F12256A6F1D142E48926F595F25E0E5D Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:09:57Z' + - 'Ref A: 696096637B6E43E7B1CB4D3D731B78E3 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:29Z' status: 200 OK code: 200 - duration: 215.2115ms + duration: 4.290686167s - id: 8 request: proto: HTTP/1.1 @@ -571,17 +9375,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w16f971%27&api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -589,18 +9391,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 888517 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","name":"rg-azdtest-w16f971","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","DeleteAfter":"2025-04-15T18:08:55Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "888517" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:09:57 GMT + - Thu, 09 Apr 2026 19:11:37 GMT Expires: - "-1" Pragma: @@ -612,20 +9414,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c2c4215db714f73998f746cba80e7d58 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5a3370cc-081e-4552-b21e-71c1fa06622d + - 4832410f-9c40-48d5-858a-e50cf580a5fb X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T170958Z:5a3370cc-081e-4552-b21e-71c1fa06622d + - EASTUS2:20260409T191137Z:4832410f-9c40-48d5-858a-e50cf580a5fb X-Msedge-Ref: - - 'Ref A: 9E84E570708340A696AE3AC1C9AD08A8 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:09:58Z' + - 'Ref A: 018968B53F2B42279077340723F054FE Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:34Z' status: 200 OK code: 200 - duration: 125.4986ms + duration: 3.552579417s - id: 9 request: proto: HTTP/1.1 @@ -640,17 +9442,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -658,18 +9458,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892218 + content_length: 515084 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xdLNasJQEAXgZ%2fGuFRKNRbLLdW6KrTN6%2fyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2bqMVBpyhHMl7QHQSo%2bAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2f7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2bfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","location":"eastus2","name":"azdtest-w16f971-1744736912","properties":{"correlationId":"c2c4215db714f73998f746cba80e7d58","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","resourceName":"rg-azdtest-w16f971","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT34.6508132S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc/providers/Microsoft.Authorization/roleAssignments/110ccd1d-ce31-5c76-8b7f-dc43ac5c4814"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sts4bo56g25lnoc"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2025-04-15T18:08:55Z"},"environmentName":{"type":"String","value":"azdtest-w16f971"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"d908828a-31ea-40e4-ad67-94220b3e46fb"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"11020623976839621104","timestamp":"2025-04-15T17:09:30.4545681Z"},"tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1892218" + - "515084" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:10 GMT + - Thu, 09 Apr 2026 19:11:39 GMT Expires: - "-1" Pragma: @@ -681,20 +9481,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 13745ca0-7353-4b53-be12-baacfdf770f7 + - b5f7ac77-cb16-46eb-ae9a-8c8dc1c85e01 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250415T171011Z:13745ca0-7353-4b53-be12-baacfdf770f7 + - EASTUS2:20260409T191139Z:b5f7ac77-cb16-46eb-ae9a-8c8dc1c85e01 X-Msedge-Ref: - - 'Ref A: 4AC103F4DA664A509B2327D4E8CD1023 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:04Z' + - 'Ref A: BC38BD937C144CA7962376A04C1F60C7 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:37Z' status: 200 OK code: 200 - duration: 7.0916101s + duration: 1.873995583s - id: 10 request: proto: HTTP/1.1 @@ -714,10 +9514,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=xdLNasJQEAXgZ%2FGuFRKNRbLLdW6KrTN6%2FyK6E5tKTEigjSRG8u5NWkr36cLFgYE5i49h7uxU5GWSX49lUuSmSOP8k%2Fl3JgJtrO6nPK7L7fGjTPrCa3xjPnNHixGZfY3NfsLG3w1VVL87d%2BqMVBpyhHMl7QHQSo%2BAcwUZSCcK0QqHDAdpoiWZt3fl0matnWoDtuvZOV5OHoLwqDm7CKlD2uVRpLbazp9tGhppXWlExG0YPGEqa2rkDZuVtwFZs3bMdqKnT4fZncW%2F7ASyQRNUCLILNr3dhvzFpActTXFTIGYEq5ouOOsy%2BfMO4z741D9fMvDUD7brnQBBS0FGBWvm59csa9sv&api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -725,18 +9525,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1146802 + content_length: 415580 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2fC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2ftv%2fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2bA6WxFEkYAOMi9PuEaPVASZymNSn1%2fCp3QnvSEFffP0mhoceJPd6nykix4p9t%2bF7rjU3gtvhcrxMN%2bkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2fzhNvw%3d%3d\u0026api-version=2021-04-01","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1146802" + - "415580" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:14 GMT + - Thu, 09 Apr 2026 19:11:40 GMT Expires: - "-1" Pragma: @@ -748,20 +9548,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6460e4cb-158d-4b54-8d3b-5aa6df7c5def + - 04fab4b3-c4d2-406c-a21f-f3281d2934e2 X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T171015Z:6460e4cb-158d-4b54-8d3b-5aa6df7c5def + - EASTUS2:20260409T191140Z:04fab4b3-c4d2-406c-a21f-f3281d2934e2 X-Msedge-Ref: - - 'Ref A: 45BC5EED996F4408B959BC5158A1EDF6 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:12Z' + - 'Ref A: 6081248C92914BB382C1D975647C3B6C Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:39Z' status: 200 OK code: 200 - duration: 3.3521415s + duration: 913.479083ms - id: 11 request: proto: HTTP/1.1 @@ -781,10 +9581,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?%24skiptoken=XY9Lb4JQEEZ%2FC3eNCaA2DTthho3eodwHlO6MpYZH7k1aDKLhv1dqXNTV5OQ7Oclc2cGavjanfV9bo2xbmR8WXhlupNKShebUdS4rcKbgPz7orj6NyzliqnP%2Ftv%2Fu67m9rUYWMt95dUiVZ34pF8z9M4QdHpsfrBzRJhGH45DpD%2BA6WxFEkYAOMi9PuEaPVASZymNSn1%2FCp3QnvSEFffP0mhoceJPd6nykix4p9t%2BF7rjU3gtvhcrxMN%2BkwE7lYEcBuCTAdarKgDd6wSaXyQIBKUZSYrO7%2FzhNvw%3D%3D&api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -792,18 +9592,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 97962 + content_length: 136970 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "97962" + - "136970" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:16 GMT + - Thu, 09 Apr 2026 19:11:40 GMT Expires: - "-1" Pragma: @@ -815,20 +9615,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b124325d-f6d0-4276-a6e8-d86f707cf71e + - 6e591c49-fe60-4407-860c-b340cdb73e2e X-Ms-Routing-Request-Id: - - SOUTHCENTRALUS:20250415T171017Z:b124325d-f6d0-4276-a6e8-d86f707cf71e + - EASTUS2:20260409T191141Z:6e591c49-fe60-4407-860c-b340cdb73e2e X-Msedge-Ref: - - 'Ref A: A91F2EAD7A47437592F43C8668D151A6 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:15Z' + - 'Ref A: 877E42B8D2CC4CA3920AD3AE575B1A44 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:40Z' status: 200 OK code: 200 - duration: 1.9279668s + duration: 431.088375ms - id: 12 request: proto: HTTP/1.1 @@ -850,10 +9650,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912?api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=assignedTo('6c37e0ec-712d-4900-a73f-bcfd17630788') method: GET response: proto: HTTP/2.0 @@ -861,18 +9661,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2070 + content_length: 39026 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"},"properties":{"templateHash":"11020623976839621104","parameters":{"environmentName":{"type":"String","value":"azdtest-w16f971"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"d908828a-31ea-40e4-ad67-94220b3e46fb"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:08:55Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:09:30.4545681Z","duration":"PT34.6508132S","correlationId":"c2c4215db714f73998f746cba80e7d58","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w16f971"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sts4bo56g25lnoc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc/providers/Microsoft.Authorization/roleAssignments/110ccd1d-ce31-5c76-8b7f-dc43ac5c4814"}]}}' + body: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-02-11T20:25:48.1490444Z","updatedOn":"2025-02-11T20:25:48.1490444Z","createdBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","updatedBy":"2b05f6b4-9725-412f-927c-c952bc8cc4e1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fc14d582-d744-4057-927e-b2ac56269010","type":"Microsoft.Authorization/roleAssignments","name":"fc14d582-d744-4057-927e-b2ac56269010"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-04-29T20:00:09.1204889Z","updatedOn":"2025-04-29T20:00:09.1204889Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/fcf6514a-ec92-4579-b376-985ed789af99","type":"Microsoft.Authorization/roleAssignments","name":"fcf6514a-ec92-4579-b376-985ed789af99"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8","condition":null,"conditionVersion":null,"createdOn":"2025-05-12T20:59:23.1044444Z","updatedOn":"2025-05-12T20:59:23.1044444Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleAssignments/e1b4ed65-90d5-4575-9fab-a15e8dd8bc67","type":"Microsoft.Authorization/roleAssignments","name":"e1b4ed65-90d5-4575-9fab-a15e8dd8bc67"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385","condition":null,"conditionVersion":null,"createdOn":"2025-10-17T23:58:29.8971266Z","updatedOn":"2025-10-17T23:58:29.8971266Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-4385/providers/Microsoft.Authorization/roleAssignments/29bfa47e-c62a-42f2-b8eb-2bb43b0d0663","type":"Microsoft.Authorization/roleAssignments","name":"29bfa47e-c62a-42f2-b8eb-2bb43b0d0663"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/e79298df-d852-4c6d-84f9-5d13249d1e55","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025","condition":null,"conditionVersion":null,"createdOn":"2025-10-21T16:32:22.3532519Z","updatedOn":"2025-10-21T16:32:22.3532519Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-octopets-2025/providers/Microsoft.App/agents/sre-octopets-2025/providers/Microsoft.Authorization/roleAssignments/f009b370-f0d7-521f-8190-eaaa9291fcec","type":"Microsoft.Authorization/roleAssignments","name":"f009b370-f0d7-521f-8190-eaaa9291fcec"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg","condition":null,"conditionVersion":null,"createdOn":"2026-01-16T22:29:38.5035324Z","updatedOn":"2026-01-16T22:29:38.5035324Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/pmdataagent-rg/providers/Microsoft.Authorization/roleAssignments/b9a7d332-61f1-4436-a054-b0a07f45cba3","type":"Microsoft.Authorization/roleAssignments","name":"b9a7d332-61f1-4436-a054-b0a07f45cba3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:17:17.9080051Z","updatedOn":"2026-01-20T23:17:17.9080051Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.Authorization/roleAssignments/a6fcb9dd-5363-4ac1-ad09-52da2646918a","type":"Microsoft.Authorization/roleAssignments","name":"a6fcb9dd-5363-4ac1-ad09-52da2646918a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr","condition":null,"conditionVersion":null,"createdOn":"2026-01-20T23:22:41.7902463Z","updatedOn":"2026-01-20T23:22:41.7902463Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":"Granted by Microsoft Foundry vscode extension"},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-copilot-demo/providers/Microsoft.ContainerRegistry/registries/5ca082fshboyercopilotprojacr/providers/Microsoft.Authorization/roleAssignments/4f9e750e-a959-4089-99a9-735d93d6ae69","type":"Microsoft.Authorization/roleAssignments","name":"4f9e750e-a959-4089-99a9-735d93d6ae69"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.7220122Z","updatedOn":"2026-01-22T18:42:31.7220913Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/7a576f9c-2657-5b4d-83ba-6d7b8564e2c3","type":"Microsoft.Authorization/roleAssignments","name":"7a576f9c-2657-5b4d-83ba-6d7b8564e2c3"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:33:36.8056446Z","updatedOn":"2026-01-22T18:42:31.6002825Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.Authorization/roleAssignments/d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9","type":"Microsoft.Authorization/roleAssignments","name":"d64c94dc-e17d-52e7-a4cf-1bf3e5be01a9"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T04:34:36.2184216Z","updatedOn":"2026-01-22T18:43:19.5451992Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-calc/providers/Microsoft.ContainerRegistry/registries/crfufkrevrlkiog/providers/Microsoft.Authorization/roleAssignments/bf48cd73-5652-58b3-a891-31cd689a8e83","type":"Microsoft.Authorization/roleAssignments","name":"bf48cd73-5652-58b3-a891-31cd689a8e83"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.6412744Z","updatedOn":"2026-01-23T00:14:55.3413202Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/605b3e65-590a-52b0-9b57-7e2487bd436e","type":"Microsoft.Authorization/roleAssignments","name":"605b3e65-590a-52b0-9b57-7e2487bd436e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:09:20.7479302Z","updatedOn":"2026-01-23T00:14:55.3524082Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.Authorization/roleAssignments/cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582","type":"Microsoft.Authorization/roleAssignments","name":"cabe53cb-cb59-5ac1-9ac8-2b5e4cf54582"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T00:10:15.5696850Z","updatedOn":"2026-01-23T00:15:36.5819142Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-email-router-agent/providers/Microsoft.ContainerRegistry/registries/cr2ane3dhw2abhq/providers/Microsoft.Authorization/roleAssignments/64540a60-8bcc-52bc-b884-c13515038ba2","type":"Microsoft.Authorization/roleAssignments","name":"64540a60-8bcc-52bc-b884-c13515038ba2"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:55.0166898Z","updatedOn":"2026-01-23T20:54:28.1016796Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/fc8334ec-8bea-5e02-9b4f-43cff42c7bed","type":"Microsoft.Authorization/roleAssignments","name":"fc8334ec-8bea-5e02-9b4f-43cff42c7bed"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:36:54.9912109Z","updatedOn":"2026-01-23T20:54:28.0149087Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.Authorization/roleAssignments/b3341787-0a98-5dd5-a2e0-1756e8c57bde","type":"Microsoft.Authorization/roleAssignments","name":"b3341787-0a98-5dd5-a2e0-1756e8c57bde"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6","condition":null,"conditionVersion":null,"createdOn":"2026-01-23T20:55:21.3666642Z","updatedOn":"2026-01-23T20:55:21.3666642Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-david-test/providers/Microsoft.ContainerRegistry/registries/crhljrvddu7ixf6/providers/Microsoft.Authorization/roleAssignments/4655cef5-9977-5346-a5d2-c27b33dc17c5","type":"Microsoft.Authorization/roleAssignments","name":"4655cef5-9977-5346-a5d2-c27b33dc17c5"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker","condition":null,"conditionVersion":null,"createdOn":"2026-01-27T00:12:51.6587791Z","updatedOn":"2026-01-27T00:12:51.6587791Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/azureadvocates/providers/Microsoft.Storage/storageAccounts/sociallinker/providers/Microsoft.Authorization/roleAssignments/13fdc017-b129-4d12-886e-97e8bca4c8e4","type":"Microsoft.Authorization/roleAssignments","name":"13fdc017-b129-4d12-886e-97e8bca4c8e4"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1146962Z","updatedOn":"2026-02-14T18:04:18.3583138Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/81290285-4b15-5d3f-b731-9e4f39716269","type":"Microsoft.Authorization/roleAssignments","name":"81290285-4b15-5d3f-b731-9e4f39716269"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:58:37.1665151Z","updatedOn":"2026-02-14T18:04:18.4095322Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.Authorization/roleAssignments/94dd26ea-5dd1-5807-9af0-6f3b8810c40b","type":"Microsoft.Authorization/roleAssignments","name":"94dd26ea-5dd1-5807-9af0-6f3b8810c40b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi","condition":null,"conditionVersion":null,"createdOn":"2026-02-14T17:59:35.4573312Z","updatedOn":"2026-02-14T18:04:59.6101897Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-recipe-remix-dev/providers/Microsoft.ContainerRegistry/registries/crbu3jrqykrwopi/providers/Microsoft.Authorization/roleAssignments/8290a893-c6ce-5d7f-8746-5b61055a672d","type":"Microsoft.Authorization/roleAssignments","name":"8290a893-c6ce-5d7f-8746-5b61055a672d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts","condition":null,"conditionVersion":null,"createdOn":"2026-02-24T03:36:34.6591990Z","updatedOn":"2026-02-24T03:36:34.6591990Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-shboyer-af-ts/providers/Microsoft.Authorization/roleAssignments/b9d7628f-5576-4018-9b5f-85fc24be672e","type":"Microsoft.Authorization/roleAssignments","name":"b9d7628f-5576-4018-9b5f-85fc24be672e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:31:40.1699479Z","updatedOn":"2026-02-25T01:31:40.1699479Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.CognitiveServices/accounts/ai-account-yapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/b8b1f75a-96ba-5d7d-8205-4f794293e324","type":"Microsoft.Authorization/roleAssignments","name":"b8b1f75a-96ba-5d7d-8205-4f794293e324"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T01:32:07.3700484Z","updatedOn":"2026-02-25T01:32:07.3700484Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-echo-ts-fresh/providers/Microsoft.ContainerRegistry/registries/cryapv6twcracbu/providers/Microsoft.Authorization/roleAssignments/73d453e9-cd90-55bc-a3f0-078c8f1b8e30","type":"Microsoft.Authorization/roleAssignments","name":"73d453e9-cd90-55bc-a3f0-078c8f1b8e30"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9707032Z","updatedOn":"2026-02-25T02:49:12.4889489Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/4cfa7055-b330-58ac-bea4-cf0e72abc5ff","type":"Microsoft.Authorization/roleAssignments","name":"4cfa7055-b330-58ac-bea4-cf0e72abc5ff"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:00:58.9847168Z","updatedOn":"2026-02-25T02:49:12.4949681Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.Authorization/roleAssignments/101bfda6-41d9-58c6-9a16-6f25f4c4b131","type":"Microsoft.Authorization/roleAssignments","name":"101bfda6-41d9-58c6-9a16-6f25f4c4b131"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa","condition":null,"conditionVersion":null,"createdOn":"2026-02-25T02:01:58.9795499Z","updatedOn":"2026-02-25T02:01:58.9795499Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-ts-mf-testing/providers/Microsoft.ContainerRegistry/registries/crl7csi7ewdknpa/providers/Microsoft.Authorization/roleAssignments/a9fd7947-ba84-599e-838d-6cd22f42ef7a","type":"Microsoft.Authorization/roleAssignments","name":"a9fd7947-ba84-599e-838d-6cd22f42ef7a"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.7648061Z","updatedOn":"2026-03-26T06:17:02.7648061Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/90857788-3534-5da8-abbd-fb99df7e632d","type":"Microsoft.Authorization/roleAssignments","name":"90857788-3534-5da8-abbd-fb99df7e632d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:17:02.9211819Z","updatedOn":"2026-03-26T06:17:02.9211819Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.Authorization/roleAssignments/a787ed5b-1f87-59c7-8497-fcc47882dc25","type":"Microsoft.Authorization/roleAssignments","name":"a787ed5b-1f87-59c7-8497-fcc47882dc25"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T06:18:03.4450814Z","updatedOn":"2026-03-26T06:18:03.4450814Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-test-agent/providers/Microsoft.ContainerRegistry/registries/crgnr3um6lencj6/providers/Microsoft.Authorization/roleAssignments/1b32d9b6-8672-55e1-af60-2843979b5d11","type":"Microsoft.Authorization/roleAssignments","name":"1b32d9b6-8672-55e1-af60-2843979b5d11"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.7149469Z","updatedOn":"2026-03-30T21:14:24.1352264Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/daf6cddc-461e-5507-80ac-1b47d025defe","type":"Microsoft.Authorization/roleAssignments","name":"daf6cddc-461e-5507-80ac-1b47d025defe"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:20:09.6762167Z","updatedOn":"2026-03-30T21:14:24.0212102Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/bc1a2d3e-657b-58a6-bae0-9eae55ff066e","type":"Microsoft.Authorization/roleAssignments","name":"bc1a2d3e-657b-58a6-bae0-9eae55ff066e"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-03-26T20:21:05.2722976Z","updatedOn":"2026-03-30T21:15:04.1182545Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.ContainerRegistry/registries/crqjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb","type":"Microsoft.Authorization/roleAssignments","name":"e4bb8cb7-e35a-57a6-9af5-4f0db33fabeb"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s","condition":null,"conditionVersion":null,"createdOn":"2026-03-30T20:15:50.2225745Z","updatedOn":"2026-03-30T21:15:15.0669190Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-foundry-helper-ncus/providers/Microsoft.Storage/storageAccounts/sthb2jwy3xayeyi4s/providers/Microsoft.Authorization/roleAssignments/138eaa02-7015-5714-93f6-0b60642a6f76","type":"Microsoft.Authorization/roleAssignments","name":"138eaa02-7015-5714-93f6-0b60642a6f76"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/53ca6127-db72-4b80-b1b0-d745d6d5456d","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:49:49.8204393Z","updatedOn":"2026-04-01T14:49:49.8204393Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/396fa00a-f149-4187-b64e-a4dba132425b","type":"Microsoft.Authorization/roleAssignments","name":"396fa00a-f149-4187-b64e-a4dba132425b"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:50:53.6495590Z","updatedOn":"2026-04-01T14:50:53.6495590Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/b086de43-a12f-4221-9202-ae3a60639a80","type":"Microsoft.Authorization/roleAssignments","name":"b086de43-a12f-4221-9202-ae3a60639a80"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:51:49.4986139Z","updatedOn":"2026-04-01T14:51:49.4986139Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/37715462-b5e0-4018-b28e-64dc5e6c6f66","type":"Microsoft.Authorization/roleAssignments","name":"37715462-b5e0-4018-b28e-64dc5e6c6f66"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T14:53:45.2400140Z","updatedOn":"2026-04-01T14:53:45.2400140Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/e0fa3920-df78-405a-b221-43d93dfa6e3f","type":"Microsoft.Authorization/roleAssignments","name":"e0fa3920-df78-405a-b221-43d93dfa6e3f"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/c883944f-8b7b-4483-af10-35834be79c4a","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:13:01.0359883Z","updatedOn":"2026-04-01T15:13:01.0359883Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/projects/ai-project-foundry-helper-ncus/providers/Microsoft.Authorization/roleAssignments/26250363-3add-4120-a6d1-6cdfae07365d","type":"Microsoft.Authorization/roleAssignments","name":"26250363-3add-4120-a6d1-6cdfae07365d"},{"properties":{"roleDefinitionId":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442","principalId":"6c37e0ec-712d-4900-a73f-bcfd17630788","principalType":"User","scope":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc","condition":null,"conditionVersion":null,"createdOn":"2026-04-01T15:14:22.4283237Z","updatedOn":"2026-04-01T15:14:22.4283237Z","createdBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","updatedBy":"6c37e0ec-712d-4900-a73f-bcfd17630788","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-foundry-helper-ncus/providers/Microsoft.CognitiveServices/accounts/ai-account-qjtivsdac4tdc/providers/Microsoft.Authorization/roleAssignments/48ccbbc9-bfdb-459b-b687-b612d9e042a4","type":"Microsoft.Authorization/roleAssignments","name":"48ccbbc9-bfdb-459b-b687-b612d9e042a4"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2070" + - "39026" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:17 GMT + - Thu, 09 Apr 2026 19:11:42 GMT Expires: - "-1" Pragma: @@ -884,20 +9684,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/49436f56-ee68-4871-85fc-71c648c39c2d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d9aea93b-6b76-4a29-bc54-a6111833f8f1 + - 97484776-a8f1-4fe4-9226-38eb91926f03 X-Ms-Routing-Request-Id: - - CENTRALUS:20250415T171017Z:d9aea93b-6b76-4a29-bc54-a6111833f8f1 + - EASTUS:20260409T191142Z:8f4800bf-bc14-4ab0-903e-ca4cd6b4d4f4 X-Msedge-Ref: - - 'Ref A: 7F8D0FD4A9904A2ABF8F0A0A3BF531CF Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:17Z' + - 'Ref A: 1EC78706B0C04C8AAB652063FAE25F3B Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:42Z' status: 200 OK code: 200 - duration: 270.8538ms + duration: 410.348625ms - id: 13 request: proto: HTTP/1.1 @@ -919,10 +9721,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armauthorization/v2.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w16f971%27&api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635?api-version=2022-04-01 method: GET response: proto: HTTP/2.0 @@ -930,18 +9732,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 642 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","name":"rg-azdtest-w16f971","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","DeleteAfter":"2025-04-15T18:08:55Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants full access to manage all resources, including the ability to assign roles in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:45.8978856Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "642" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:17 GMT + - Thu, 09 Apr 2026 19:11:44 GMT Expires: - "-1" Pragma: @@ -953,32 +9755,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + X-Ms-Operation-Identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6c37e0ec-712d-4900-a73f-bcfd17630788/eastus/8e37ce0b-58f0-4e03-abe6-e0556abaad60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b67c9b2d-c29b-46ae-8482-d084e5e817ee + - 138a83a1-2bd2-4eb3-afd3-5bad5aec4c9a X-Ms-Routing-Request-Id: - - CENTRALUS:20250415T171018Z:b67c9b2d-c29b-46ae-8482-d084e5e817ee + - EASTUS:20260409T191144Z:b37b8279-dbb8-428f-ab59-d3bd6bb3d477 X-Msedge-Ref: - - 'Ref A: A20DB54ED7D2433BB7F18B8DBC4E3523 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:18Z' + - 'Ref A: 092F87BE205E4920B207FB59F3F8C296 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:43Z' status: 200 OK code: 200 - duration: 122.5264ms + duration: 1.544141917s - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4214 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-de1dcea","reference":null},"location":{"value":"eastus2","reference":null},"principalId":{"value":"6c37e0ec-712d-4900-a73f-bcfd17630788","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":"17215814304812810483"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention"}},"location":{"type":"string","minLength":1,"metadata":{"description":"Primary location for all resources"}},"principalId":{"type":"string","metadata":{"description":"Id of the user or app to assign application roles"}},"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":"2022-09-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[parameters(''principalId'')]"}},"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":"3067942187689406289"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"principalId":{"type":"string"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]","storageBlobDataContributorRole":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), variables(''storageBlobDataContributorRole''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[variables(''storageBlobDataContributorRole'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"}}}},"tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"}}' form: {} headers: Accept: @@ -987,30 +9791,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4214" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/resources?api-version=2021-04-01 - method: GET + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 2146 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc","name":"sts4bo56g25lnoc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"},"properties":{"templateHash":"17215814304812810483","parameters":{"environmentName":{"type":"String","value":"azdtest-de1dcea"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"6c37e0ec-712d-4900-a73f-bcfd17630788"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:11:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:11:44.8167874Z","duration":"PT0S","correlationId":"58b1ed8b9e719ae2d8aeb740c1c95d60","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de1dcea"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264/providers/Microsoft.Authorization/roleAssignments/214fdfe8-abad-506d-ac44-5295fb6fcb8a"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "2146" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:17 GMT + - Thu, 09 Apr 2026 19:11:44 GMT Expires: - "-1" Pragma: @@ -1022,32 +9830,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - fdabd499-b035-44bc-bdb8-dcf8f34fe660 + - 8923a915-fa08-46cb-81c3-12673db2c7f8 X-Ms-Routing-Request-Id: - - EASTUS:20250415T171018Z:fdabd499-b035-44bc-bdb8-dcf8f34fe660 + - EASTUS2:20260409T191145Z:8923a915-fa08-46cb-81c3-12673db2c7f8 X-Msedge-Ref: - - 'Ref A: 2861B1249F5440DC859151EE94B1CBDD Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:18Z' + - 'Ref A: 5F164D77DE0C4BB98B0E41F11E136B5F Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:44Z' status: 200 OK code: 200 - duration: 188.5948ms + duration: 853.357833ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4214 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-de1dcea","reference":null},"location":{"value":"eastus2","reference":null},"principalId":{"value":"6c37e0ec-712d-4900-a73f-bcfd17630788","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":"17215814304812810483"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention"}},"location":{"type":"string","minLength":1,"metadata":{"description":"Primary location for all resources"}},"principalId":{"type":"string","metadata":{"description":"Id of the user or app to assign application roles"}},"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":"2022-09-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[parameters(''principalId'')]"}},"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":"3067942187689406289"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"principalId":{"type":"string"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]","storageBlobDataContributorRole":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"},"properties":{"allowSharedKeyAccess":false}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), variables(''storageBlobDataContributorRole''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[variables(''storageBlobDataContributorRole'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_STORAGE_ACCOUNT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_STORAGE_ACCOUNT_NAME.value]"}}}},"tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"}}' form: {} headers: Accept: @@ -1056,30 +9864,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4214" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912?api-version=2021-04-01 - method: GET + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2070 + content_length: 1491 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"},"properties":{"templateHash":"11020623976839621104","parameters":{"environmentName":{"type":"String","value":"azdtest-w16f971"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"d908828a-31ea-40e4-ad67-94220b3e46fb"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:08:55Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:09:30.4545681Z","duration":"PT34.6508132S","correlationId":"c2c4215db714f73998f746cba80e7d58","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w16f971"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sts4bo56g25lnoc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc/providers/Microsoft.Authorization/roleAssignments/110ccd1d-ce31-5c76-8b7f-dc43ac5c4814"}]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"},"properties":{"templateHash":"17215814304812810483","parameters":{"environmentName":{"type":"String","value":"azdtest-de1dcea"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"6c37e0ec-712d-4900-a73f-bcfd17630788"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:11:45Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T19:11:45.7021266Z","duration":"PT0.0008944S","correlationId":"58b1ed8b9e719ae2d8aeb740c1c95d60","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de1dcea"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883/operationStatuses/08584258449797637738?api-version=2021-04-01&t=639113587063896244&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=kAMxPoP_KBBkNNbZ6GkJFSZnh_UmPAmI8dVrPy1e0JwSYRwRMC4nwAxw-2T6pcr6F2vZn3rdkJ8p0-1yk2AY1vU9e3Kzr24PJ_2StLG-bUjgjtXMu9JU_BL8HkAqT55GHayp9Pi_WRriDBaPvfPpAn17NpReBRX8OxY-h1usDDQe3vYNlAcm5Gg1ZLOHuoWFef5uzbaFxEZD5wx8Yc_OTIpIFDp14TwYb26TsvPz9UO8sHTbgpiyo2SY3k3t__3eB3oe_uXeKG_cFYN9FERebksvfq3fSzf2W5meneW-WF90qei7ss3Ei2xZzRenANt_cN6D-pgep1Utz-8i9oBUXA&h=KZTpalcv1cZyTmfkIfeMf9SCuh4Eqe_BZXEVeuTzK_A Cache-Control: - no-cache Content-Length: - - "2070" + - "1491" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:17 GMT + - Thu, 09 Apr 2026 19:11:45 GMT Expires: - "-1" Pragma: @@ -1091,20 +9905,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + X-Ms-Deployment-Engine-Version: + - 1.628.3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - c327f3b6-46aa-46c5-8ea0-4339d7c02314 + - e68d6b18-703a-4b04-a6f8-e8169a5b15e4 X-Ms-Routing-Request-Id: - - NORTHCENTRALUS:20250415T171018Z:c327f3b6-46aa-46c5-8ea0-4339d7c02314 + - EASTUS:20260409T191146Z:e68d6b18-703a-4b04-a6f8-e8169a5b15e4 X-Msedge-Ref: - - 'Ref A: A5F4AD6B72914EFF9872D7F1EA2223AC Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:18Z' - status: 200 OK - code: 200 - duration: 520.8176ms + - 'Ref A: C75FEB10C27A46789511134CE47916BB Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:11:45Z' + status: 201 Created + code: 201 + duration: 981.731625ms - id: 16 request: proto: HTTP/1.1 @@ -1119,17 +9935,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w16f971%27&api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883/operationStatuses/08584258449797637738?api-version=2021-04-01&t=639113587063896244&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=kAMxPoP_KBBkNNbZ6GkJFSZnh_UmPAmI8dVrPy1e0JwSYRwRMC4nwAxw-2T6pcr6F2vZn3rdkJ8p0-1yk2AY1vU9e3Kzr24PJ_2StLG-bUjgjtXMu9JU_BL8HkAqT55GHayp9Pi_WRriDBaPvfPpAn17NpReBRX8OxY-h1usDDQe3vYNlAcm5Gg1ZLOHuoWFef5uzbaFxEZD5wx8Yc_OTIpIFDp14TwYb26TsvPz9UO8sHTbgpiyo2SY3k3t__3eB3oe_uXeKG_cFYN9FERebksvfq3fSzf2W5meneW-WF90qei7ss3Ei2xZzRenANt_cN6D-pgep1Utz-8i9oBUXA&h=KZTpalcv1cZyTmfkIfeMf9SCuh4Eqe_BZXEVeuTzK_A method: GET response: proto: HTTP/2.0 @@ -1137,18 +9951,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 22 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","name":"rg-azdtest-w16f971","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","DeleteAfter":"2025-04-15T18:08:55Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:18 GMT + - Thu, 09 Apr 2026 19:12:46 GMT Expires: - "-1" Pragma: @@ -1160,20 +9974,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 66765f17-f77d-4d31-8221-f649845da883 + - 45b89c02-4a95-406a-865e-4ed0251d8e6e X-Ms-Routing-Request-Id: - - CENTRALUS:20250415T171019Z:66765f17-f77d-4d31-8221-f649845da883 + - EASTUS:20260409T191246Z:45b89c02-4a95-406a-865e-4ed0251d8e6e X-Msedge-Ref: - - 'Ref A: FF0E8451001E47A3B791F95246AE6DA7 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:18Z' + - 'Ref A: 08E959D53A9946708D4783AC2D1A5EA9 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:12:46Z' status: 200 OK code: 200 - duration: 225.1648ms + duration: 145.205125ms - id: 17 request: proto: HTTP/1.1 @@ -1188,17 +10002,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/resources?api-version=2021-04-01 + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1206,18 +10018,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 2090 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc","name":"sts4bo56g25lnoc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971"}}]}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"},"properties":{"templateHash":"17215814304812810483","parameters":{"environmentName":{"type":"String","value":"azdtest-de1dcea"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"6c37e0ec-712d-4900-a73f-bcfd17630788"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:11:45Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:12:31.0401728Z","duration":"PT45.3380462S","correlationId":"58b1ed8b9e719ae2d8aeb740c1c95d60","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de1dcea"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strrsrkblpa3264"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264/providers/Microsoft.Authorization/roleAssignments/214fdfe8-abad-506d-ac44-5295fb6fcb8a"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "2090" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:18 GMT + - Thu, 09 Apr 2026 19:12:46 GMT Expires: - "-1" Pragma: @@ -1229,20 +10041,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - 58b1ed8b9e719ae2d8aeb740c1c95d60 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b6305d8e-1531-457e-9c72-083b7e162e2a + - e66eb601-2227-4b89-83a3-736536987a79 X-Ms-Routing-Request-Id: - - WESTUS2:20250415T171019Z:b6305d8e-1531-457e-9c72-083b7e162e2a + - EASTUS:20260409T191247Z:e66eb601-2227-4b89-83a3-736536987a79 X-Msedge-Ref: - - 'Ref A: C7550A61C9CB40E887E8152A812D95BB Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:19Z' + - 'Ref A: BA149A35D3DA4F17926CD3699F0425F8 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:12:46Z' status: 200 OK code: 200 - duration: 280.6533ms + duration: 172.290125ms - id: 18 request: proto: HTTP/1.1 @@ -1264,35 +10076,33 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w16f971?api-version=2021-04-01 - method: DELETE + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-de1dcea%27&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 325 uncompressed: false - body: "" + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","name":"rg-azdtest-de1dcea","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea","DeleteAfter":"2026-04-09T20:11:45Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "325" + Content-Type: + - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:10:19 GMT + - Thu, 09 Apr 2026 19:12:46 GMT Expires: - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMTZGOTcxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638803338814455114&c=MIIHpTCCBo2gAwIBAgITOgSugw3oUBqO8E_fiQAEBK6DDTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIxMjEyNDA5WhcNMjUwNzIwMjEyNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKY-gKObWAB4EXBsaFuIZWRkYSj1wnm0R3jSIhjIE6sGAT3QrD_tI78RVBcN4n44Ez0jb0-RgAfYTY-c58wthLx3_QbY__7WMNIph1e-Xauq_tZ9NZv0zkKzYIGCdCUCRR7u7g3u5EVq-Qj6V-i533xO3nzORbqINkSZgJy91uBsvTqNuxDebR5suiyGpP94A3_eptrdf_CGQEj8on9vN0arSta9S8bmn0JQ9Ciym5BQylBgGyPVJu5RhlvafJe9P3l_7PeZ8To5sEcch0KWwXce8Z21nayP06Uwc3eeEj_QVHo7jBUXBxUxTsWWidLWvB8Tnzat8vKcB4aJMHmZRW0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSMe2VwCPLdh19jxptzyk3Kp12LcjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFaWenXG0RB-e8Ma_IgPXcx3Kt2gVD03eKdXML3GJYMAF5Zdv_kaRWIT5B9r9QcbTnWEmJJ_kBWkIDdtOtdWCXTnKpIWVxKBFBYMflqbabzm97MOF20zdXF3SOH4AAs36ULLjPpgT2bL9BsXhQIxC1dIOLgpT0XJzedhujL6GZNkhxm0uYrU7JXYMagCZpwpc9dTBqkdeNGORM7hfLnc4ZallS2p2QoDSTAPLm6sNZ0PjAjLD1QuIepIytQaJeYEJ3JJlajnO-AGbDVf2IxiV6oFmCOWEPJd9M5OveD6wN6hWovWh_s2uNrvzIN5W8EaBxehxC-7TAaaO3bpvfRoxiE&s=D0E_TMv0nnRP-mRUmGIikFHy_4wqhty2KxQauNxUWJNC9qiNn2Ea99cLpmHCf45tKEYNoLaD1_Xy1xF_i7AfmH49DlgwxU-yGlyo_GvsHSwqT5bp6YwFwiDRbQxye7L4mOHiyfVEwjTDsxctd3dDyoHy6WfSw2ArKXf3OWYyCgwexCRZ4WNNMql0gzRgZMjDugaKRow0Y9upKcDxaPyEAKcgvugSWwzzxTRPggysvjFezefvIEm2jrg9iX4H4vsQbwVtEpUJrtKHcxKYibNzAKVTw84THW-_GRLqVZLjHctBQndBa9F5v_mJcunltLnfVIwIVkUVlUPBHo4bFbh1Sw&h=Ak5blRzasdrLQ8WDTgm1B8DMkdkNpQQ_KTxkxbuXrQ8 Pragma: - no-cache - Retry-After: - - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -1300,20 +10110,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "799" - X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - - "11999" + - 58b1ed8b9e719ae2d8aeb740c1c95d60 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 7d7c8223-f983-4491-bea2-28b8a577680d + - 60dee1c2-3a19-4135-9a78-919397cd72c6 X-Ms-Routing-Request-Id: - - NORTHCENTRALUS:20250415T171020Z:7d7c8223-f983-4491-bea2-28b8a577680d + - EASTUS:20260409T191247Z:60dee1c2-3a19-4135-9a78-919397cd72c6 X-Msedge-Ref: - - 'Ref A: 7E579A25D5A044F8AEA068A8E01D03AE Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:10:19Z' - status: 202 Accepted - code: 202 - duration: 1.1915005s + - 'Ref A: 82C044709FAA46E99C6B85AF29CC7E8E Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:12:47Z' + status: 200 OK + code: 200 + duration: 371.806833ms - id: 19 request: proto: HTTP/1.1 @@ -1328,15 +10138,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMTZGOTcxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638803338814455114&c=MIIHpTCCBo2gAwIBAgITOgSugw3oUBqO8E_fiQAEBK6DDTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIxMjEyNDA5WhcNMjUwNzIwMjEyNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKY-gKObWAB4EXBsaFuIZWRkYSj1wnm0R3jSIhjIE6sGAT3QrD_tI78RVBcN4n44Ez0jb0-RgAfYTY-c58wthLx3_QbY__7WMNIph1e-Xauq_tZ9NZv0zkKzYIGCdCUCRR7u7g3u5EVq-Qj6V-i533xO3nzORbqINkSZgJy91uBsvTqNuxDebR5suiyGpP94A3_eptrdf_CGQEj8on9vN0arSta9S8bmn0JQ9Ciym5BQylBgGyPVJu5RhlvafJe9P3l_7PeZ8To5sEcch0KWwXce8Z21nayP06Uwc3eeEj_QVHo7jBUXBxUxTsWWidLWvB8Tnzat8vKcB4aJMHmZRW0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSMe2VwCPLdh19jxptzyk3Kp12LcjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFaWenXG0RB-e8Ma_IgPXcx3Kt2gVD03eKdXML3GJYMAF5Zdv_kaRWIT5B9r9QcbTnWEmJJ_kBWkIDdtOtdWCXTnKpIWVxKBFBYMflqbabzm97MOF20zdXF3SOH4AAs36ULLjPpgT2bL9BsXhQIxC1dIOLgpT0XJzedhujL6GZNkhxm0uYrU7JXYMagCZpwpc9dTBqkdeNGORM7hfLnc4ZallS2p2QoDSTAPLm6sNZ0PjAjLD1QuIepIytQaJeYEJ3JJlajnO-AGbDVf2IxiV6oFmCOWEPJd9M5OveD6wN6hWovWh_s2uNrvzIN5W8EaBxehxC-7TAaaO3bpvfRoxiE&s=D0E_TMv0nnRP-mRUmGIikFHy_4wqhty2KxQauNxUWJNC9qiNn2Ea99cLpmHCf45tKEYNoLaD1_Xy1xF_i7AfmH49DlgwxU-yGlyo_GvsHSwqT5bp6YwFwiDRbQxye7L4mOHiyfVEwjTDsxctd3dDyoHy6WfSw2ArKXf3OWYyCgwexCRZ4WNNMql0gzRgZMjDugaKRow0Y9upKcDxaPyEAKcgvugSWwzzxTRPggysvjFezefvIEm2jrg9iX4H4vsQbwVtEpUJrtKHcxKYibNzAKVTw84THW-_GRLqVZLjHctBQndBa9F5v_mJcunltLnfVIwIVkUVlUPBHo4bFbh1Sw&h=Ak5blRzasdrLQ8WDTgm1B8DMkdkNpQQ_KTxkxbuXrQ8 + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1344,16 +10156,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 958989 uncompressed: false - body: "" + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2fOXQN52n7lT7b5ZemcosObteTl%2bP%2ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2baDISZTYCHbl2btL0%2bWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2fnM8xe1eWlDPFXj2SO%2b2%2fZBwIJiQXoAUB4S9Z%2fitUN9mC2ChcdM7eHfP8Aw%3d%3d","value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","location":"eastus2","name":"azdtest-de1dcea-1775761883","properties":{"correlationId":"58b1ed8b9e719ae2d8aeb740c1c95d60","dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","resourceName":"rg-azdtest-de1dcea","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT45.3380462S","mode":"Incremental","outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264/providers/Microsoft.Authorization/roleAssignments/214fdfe8-abad-506d-ac44-5295fb6fcb8a"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strrsrkblpa3264"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2026-04-09T20:11:45Z"},"environmentName":{"type":"String","value":"azdtest-de1dcea"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"6c37e0ec-712d-4900-a73f-bcfd17630788"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"17215814304812810483","timestamp":"2026-04-09T19:12:31.0401728Z"},"tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "958989" + Content-Type: + - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:11:36 GMT + - Thu, 09 Apr 2026 19:12:56 GMT Expires: - "-1" Pragma: @@ -1365,20 +10179,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - f05f4c61368944e4f9e4c6e9cadf376a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2d727d2d-cb92-4497-b5ff-2642bf7093ea + - 3dafddd8-4495-495a-883f-f0614974620c X-Ms-Routing-Request-Id: - - NORTHCENTRALUS:20250415T171136Z:2d727d2d-cb92-4497-b5ff-2642bf7093ea + - EASTUS:20260409T191256Z:3dafddd8-4495-495a-883f-f0614974620c X-Msedge-Ref: - - 'Ref A: 2757223E1CF1407E95B1017602F875D8 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:11:36Z' + - 'Ref A: E0404B0F938A439385A976E6B6F63F0C Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:12:53Z' status: 200 OK code: 200 - duration: 226.4523ms + duration: 3.509591958s - id: 20 request: proto: HTTP/1.1 @@ -1393,17 +10207,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912?api-version=2021-04-01 + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=xc8xb4MwEAXg34JnItmhQ8VGY1cizR2xfVbFGCGaQiIjtURgIv57S6KsXbud3r3hfVdWdb5v%2FOXQN52n7lT7b5ZemcosObteTl%2BP%2Ff7w1TdL460OLGUieo40qQC8XLH41jDd8PgJsY7Q4QvIYzAtTIUqA6rtBlQ%2BaDISZTYCHbl2btL0%2BWEEFjvLh0K6J5SaFxIGaE8JttUIsgpgBRHHrXYjOfVq7dQFI1WCVCY4lQKnasXmmGXOksl2ebaMZ6m%2FnM8xe1eWlDPFXj2SO%2B2%2FZBwIJiQXoAUB4S9Z%2FitUN9mC2ChcdM7eHfP8Aw%3D%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1411,18 +10223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2070 + content_length: 888517 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w16f971","azd-provision-param-hash":"0700beee8f9155147a5380c78090b676129a690ff89f471ebf92f1894b8d23d6"},"properties":{"templateHash":"11020623976839621104","parameters":{"environmentName":{"type":"String","value":"azdtest-w16f971"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"d908828a-31ea-40e4-ad67-94220b3e46fb"},"deleteAfterTime":{"type":"String","value":"2025-04-15T18:08:55Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:09:30.4545681Z","duration":"PT34.6508132S","correlationId":"c2c4215db714f73998f746cba80e7d58","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w16f971"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sts4bo56g25lnoc"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w16f971/providers/Microsoft.Storage/storageAccounts/sts4bo56g25lnoc/providers/Microsoft.Authorization/roleAssignments/110ccd1d-ce31-5c76-8b7f-dc43ac5c4814"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2fJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2ftHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2boq0SYuskkyGHREs5UQr3VgKMqfJ%2fM3n37v53ObMxI6C5N4xHcW43w%2frAf4v7KrWVowbBDzJa3nhmBRh%2fFcxIJtaBob%2bE8%2fwI%3d\u0026api-version=2021-04-01","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2070" + - "888517" Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:11:36 GMT + - Thu, 09 Apr 2026 19:12:58 GMT Expires: - "-1" Pragma: @@ -1434,21 +10246,703 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - f05f4c61368944e4f9e4c6e9cadf376a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0c1e02dd-0be0-4878-879b-f9de2c392039 + - 9136a49e-b533-4b21-bf92-45238953577d X-Ms-Routing-Request-Id: - - NORTHCENTRALUS:20250415T171136Z:0c1e02dd-0be0-4878-879b-f9de2c392039 + - EASTUS:20260409T191259Z:9136a49e-b533-4b21-bf92-45238953577d X-Msedge-Ref: - - 'Ref A: 58CF25902D384FF7BF1252FBFEB8782A Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:11:36Z' + - 'Ref A: 6A721459FA2C400E9B57411FFCD47E82 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:12:56Z' status: 200 OK code: 200 - duration: 241.3477ms + duration: 2.415052459s - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHJasMwFEW%2FJVrbYKUJtN4plqB2IimW3qN4GYLrekCG1sFD8L8XNwnkF7q7w1lcuFdybl1XusupK1sHbZ27HxJeiWAW0K4X6fKhO56%2Bu3Ih9vlIQkJXr6sUxCiDzCfeH2Ha%2FtHRdbBSqHaSF6Op5KRFNiqRRFLEfQqGK84GCUWQIk4pfH0aqvTBBr3muFE83aqKvcgJBznFgYJsIyPKge4SEG%2Boq0SYuskkyGHREs5UQr3VgKMqfJ%2FM3n37v53ObMxI6C5N4xHcW43w%2FrAf4v7KrWVowbBDzJa3nhmBRh%2FFcxIJtaBob%2BE8%2FwI%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 515084 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2bfWSs0rT9wd7sc7F1ZF%2fItsjLQ37elIcihyLb5R9keiGcWkA78GW%2bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2bbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2fzvnvY0plYB5xCYau0JJpfj6d%2buSJ%2byMPu%2fYP75%2bA2oR2AlxahTDv2rv99iP3aRStH59Qb%2btAr%2bFoVMp%2fIr82Xa%2bf\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "515084" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:13:00 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 1c49964b-c445-4b6f-88ab-b8b00e8f2b99 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191300Z:1c49964b-c445-4b6f-88ab-b8b00e8f2b99 + X-Msedge-Ref: + - 'Ref A: 1D98CCECF6F249F591034F19BA96D38B Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:12:59Z' + status: 200 OK + code: 200 + duration: 1.41529675s + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=3VLbbsIwDP0W8syklpsm3kKTigJJmsTOxCNijEFRO21FvSD%2BfWSs0rT9wd7sc7F1ZF%2FItsjLQ37elIcihyLb5R9keiGcWkA78GW%2Bq8t0814evGK5a8iUhL3HngbeiGD9QPpfClNUHRdORj2JcibYvjFH0Sq%2BbiRfRIInlQbDJKO1gH2gEVsNry8mlGplg0oxHEmGlQBeyZYOxFGPRbsNZRMuIHPWurfYxItYo0QXuEi7mXbBCS0fp4a7JQaxthgrw8MUsucblkxEpms5rJmArNXHmBnYVhpFLQGH5Nr%2FzvnvY0plYB5xCYau0JJpfj6d%2BuSJ%2ByMPu%2FYP75%2BA2oR2AlxahTDv2rv99iP3aRStH59Qb%2BtAr%2BFoVMp%2FIr82Xa%2Bf&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415580 + uncompressed: false + body: '{"nextLink":"https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2b%2fz7bsK8ubui3ry6Etmxqbqqg%2fWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2bCN10s%2bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2bqUihvjQZwNMFYdcNdl0%2bJ753%2b1MiiN65UA1HxLhkX15XxesBdhjx%2fM6R%2fdPoebhM8AbYwiXM%2fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3d\u0026api-version=2021-04-01","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "415580" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:13:00 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - f4a9555a-3f0a-49a7-8e47-bf98c12d9490 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191301Z:f4a9555a-3f0a-49a7-8e47-bf98c12d9490 + X-Msedge-Ref: + - 'Ref A: AB643853EDB54636AA033DFCD96B1564 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:13:00Z' + status: 200 OK + code: 200 + duration: 736.524167ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/?%24skiptoken=1ZHPboMwDMafhZyLBIXDxC0rmQptnJLYm3qsEOsoFUgbFX8q3n3NOqRpe4LdbH%2B%2Fz7bsK8ubui3ry6Etmxqbqqg%2FWHRlghsks7RhXfTt7vDelpbYFAOLmO88OBmKQXp7ly2%2BCN10s%2Bb7SwcIHmV8HPRJjkrsBxDpSoqky1DHEPNe4tHLiMYM3161D2prvE7FFEJMgcQ8VJgHgBTKUS7l4CN6kGbUE1XPT%2BqUihvjQZwNMFYdcNdl0%2BJ753%2B1MiiN65UA1HxLhkX15XxesBdhjx%2FM6R%2FdPoebhM8AbYwiXM%2Fp3X773b0bJ2PbJ9za5qJlBGm1Ez8rvyZN0yc%3D&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136970 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "136970" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:13:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - e52ad789-99bf-4a79-9cc6-256c5a5b6284 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191301Z:e52ad789-99bf-4a79-9cc6-256c5a5b6284 + X-Msedge-Ref: + - 'Ref A: 0A75CB285D3845939DE84D812D6E6322 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:13:01Z' + status: 200 OK + code: 200 + duration: 445.685834ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2090 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"},"properties":{"templateHash":"17215814304812810483","parameters":{"environmentName":{"type":"String","value":"azdtest-de1dcea"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"6c37e0ec-712d-4900-a73f-bcfd17630788"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:11:45Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:12:31.0401728Z","duration":"PT45.3380462S","correlationId":"58b1ed8b9e719ae2d8aeb740c1c95d60","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de1dcea"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strrsrkblpa3264"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264/providers/Microsoft.Authorization/roleAssignments/214fdfe8-abad-506d-ac44-5295fb6fcb8a"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2090" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:13:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 215292a8-ebe5-4574-be55-16760d9fff78 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191302Z:215292a8-ebe5-4574-be55-16760d9fff78 + X-Msedge-Ref: + - 'Ref A: B1B31E4250D8498FB6B35927FD7A0326 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:13:02Z' + status: 200 OK + code: 200 + duration: 161.748625ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 364 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264","name":"strrsrkblpa3264","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:13:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3ad660c3-da67-4d7d-a7f1-87700883982c + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191302Z:3ad660c3-da67-4d7d-a7f1-87700883982c + X-Msedge-Ref: + - 'Ref A: 229B2EA9BC1A4E008EEDDF0BB854D890 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:13:02Z' + status: 200 OK + code: 200 + duration: 99.778458ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2090 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"},"properties":{"templateHash":"17215814304812810483","parameters":{"environmentName":{"type":"String","value":"azdtest-de1dcea"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"6c37e0ec-712d-4900-a73f-bcfd17630788"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:11:45Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:12:31.0401728Z","duration":"PT45.3380462S","correlationId":"58b1ed8b9e719ae2d8aeb740c1c95d60","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de1dcea"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strrsrkblpa3264"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264/providers/Microsoft.Authorization/roleAssignments/214fdfe8-abad-506d-ac44-5295fb6fcb8a"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2090" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:13:02 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 0f1c74a9-dbfb-4321-8f33-78889f78d32e + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191302Z:0f1c74a9-dbfb-4321-8f33-78889f78d32e + X-Msedge-Ref: + - 'Ref A: CF6B1DAF8BC6439EB5B83841906FAAE8 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:13:02Z' + status: 200 OK + code: 200 + duration: 159.145791ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 364 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264","name":"strrsrkblpa3264","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:13:02 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 138f633f-0fa9-40ca-86fa-f02c8f825ef0 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191302Z:138f633f-0fa9-40ca-86fa-f02c8f825ef0 + X-Msedge-Ref: + - 'Ref A: 5A0DEE56879E48E690E8EA691A6CE30F Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:13:02Z' + status: 200 OK + code: 200 + duration: 193.325042ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourcegroups/rg-azdtest-de1dcea?api-version=2021-04-01 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 19:13:02 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRERTFEQ0VBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113588435023503&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=BDEGSnvosOJ3TdHfx85LykMoZKqJKGtVAQ4pr3EFLOPvJv4Xxc2zyozPvdFRbhsq-Eh81x7wKZLqtnG1YnHCEqW4-N4rFFx6ctmXeXDAf1C5Ro_2ZveFwnMG9trC64UmWduy_s7x6r9quwAmPmbQvcLXo_bMIaYE5wzpApEUtIy0jSdMUrt9SX2F55MEEbEoKTSFYnWTGL-pgTAWWM2yMNWRYOf1sOuVQw3Sl6FW2Y9a8r9O53yZs0nWkxWrEEJBp_xcGzBJRPpoQAxNeQ4NJGF9UKxvfIIHvFg0ysPA5mgQKC1biLpVngScsbnsTEOfZ_6oG6_3bS68VE3WAZe0pg&h=wyfqCyChBI8sfXlXWb9PMBx2h5zkloVrq1GWifR_0ys + Pragma: + - no-cache + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - ba44b84c-c46c-42dc-9182-dde377017bef + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191303Z:ba44b84c-c46c-42dc-9182-dde377017bef + X-Msedge-Ref: + - 'Ref A: F94F0748CE4E4FF5B786781B14DB5A53 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:13:02Z' + status: 202 Accepted + code: 202 + duration: 217.252208ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRERTFEQ0VBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=639113588435023503&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=BDEGSnvosOJ3TdHfx85LykMoZKqJKGtVAQ4pr3EFLOPvJv4Xxc2zyozPvdFRbhsq-Eh81x7wKZLqtnG1YnHCEqW4-N4rFFx6ctmXeXDAf1C5Ro_2ZveFwnMG9trC64UmWduy_s7x6r9quwAmPmbQvcLXo_bMIaYE5wzpApEUtIy0jSdMUrt9SX2F55MEEbEoKTSFYnWTGL-pgTAWWM2yMNWRYOf1sOuVQw3Sl6FW2Y9a8r9O53yZs0nWkxWrEEJBp_xcGzBJRPpoQAxNeQ4NJGF9UKxvfIIHvFg0ysPA5mgQKC1biLpVngScsbnsTEOfZ_6oG6_3bS68VE3WAZe0pg&h=wyfqCyChBI8sfXlXWb9PMBx2h5zkloVrq1GWifR_0ys + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Thu, 09 Apr 2026 19:14:18 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 92348a8f-2aa6-43f7-924f-8a0fc42accd2 + X-Ms-Routing-Request-Id: + - EASTUS2:20260409T191418Z:92348a8f-2aa6-43f7-924f-8a0fc42accd2 + X-Msedge-Ref: + - 'Ref A: 461476B8051247658F38DD73695E7D1A Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:14:18Z' + status: 200 OK + code: 200 + duration: 79.327916ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2090 + uncompressed: false + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-de1dcea","azd-layer-name":"","azd-provision-param-hash":"b7a308f393104be72571d4772f33c2b3bb7021851093b5e96060776d5cf293b1"},"properties":{"templateHash":"17215814304812810483","parameters":{"environmentName":{"type":"String","value":"azdtest-de1dcea"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"6c37e0ec-712d-4900-a73f-bcfd17630788"},"deleteAfterTime":{"type":"String","value":"2026-04-09T20:11:45Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:12:31.0401728Z","duration":"PT45.3380462S","correlationId":"58b1ed8b9e719ae2d8aeb740c1c95d60","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-de1dcea"}],"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strrsrkblpa3264"}},"outputResources":[{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264"},{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/resourceGroups/rg-azdtest-de1dcea/providers/Microsoft.Storage/storageAccounts/strrsrkblpa3264/providers/Microsoft.Authorization/roleAssignments/214fdfe8-abad-506d-ac44-5295fb6fcb8a"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2090" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 09 Apr 2026 19:14:18 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f05f4c61368944e4f9e4c6e9cadf376a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - db648ae1-5a20-49e8-a429-af8d55568974 + X-Ms-Routing-Request-Id: + - EASTUS:20260409T191418Z:db648ae1-5a20-49e8-a429-af8d55568974 + X-Msedge-Ref: + - 'Ref A: 3BCB56774A17434DBBDC87C3CCD4F949 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:14:18Z' + status: 200 OK + code: 200 + duration: 189.876208ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1459,7 +10953,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w16f971"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de1dcea"}}' form: {} headers: Accept: @@ -1473,10 +10967,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912?api-version=2021-04-01 + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1486,10 +10980,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w16f971"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-15T17:11:37.3490979Z","duration":"PT0.0009722S","correlationId":"6f6a2229de47a72cc0fad9c9201e1dab","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de1dcea"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-09T19:14:19.1163852Z","duration":"PT0.0000807S","correlationId":"f05f4c61368944e4f9e4c6e9cadf376a","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912/operationStatuses/08584568697881260823?api-version=2021-04-01&t=638803338984428409&c=MIIHpTCCBo2gAwIBAgITOgSugw3oUBqO8E_fiQAEBK6DDTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIxMjEyNDA5WhcNMjUwNzIwMjEyNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKY-gKObWAB4EXBsaFuIZWRkYSj1wnm0R3jSIhjIE6sGAT3QrD_tI78RVBcN4n44Ez0jb0-RgAfYTY-c58wthLx3_QbY__7WMNIph1e-Xauq_tZ9NZv0zkKzYIGCdCUCRR7u7g3u5EVq-Qj6V-i533xO3nzORbqINkSZgJy91uBsvTqNuxDebR5suiyGpP94A3_eptrdf_CGQEj8on9vN0arSta9S8bmn0JQ9Ciym5BQylBgGyPVJu5RhlvafJe9P3l_7PeZ8To5sEcch0KWwXce8Z21nayP06Uwc3eeEj_QVHo7jBUXBxUxTsWWidLWvB8Tnzat8vKcB4aJMHmZRW0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSMe2VwCPLdh19jxptzyk3Kp12LcjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFaWenXG0RB-e8Ma_IgPXcx3Kt2gVD03eKdXML3GJYMAF5Zdv_kaRWIT5B9r9QcbTnWEmJJ_kBWkIDdtOtdWCXTnKpIWVxKBFBYMflqbabzm97MOF20zdXF3SOH4AAs36ULLjPpgT2bL9BsXhQIxC1dIOLgpT0XJzedhujL6GZNkhxm0uYrU7JXYMagCZpwpc9dTBqkdeNGORM7hfLnc4ZallS2p2QoDSTAPLm6sNZ0PjAjLD1QuIepIytQaJeYEJ3JJlajnO-AGbDVf2IxiV6oFmCOWEPJd9M5OveD6wN6hWovWh_s2uNrvzIN5W8EaBxehxC-7TAaaO3bpvfRoxiE&s=ISb3Gy9PQFJFieWNzYBeLvhmnU3pkRVGGdujpI6D4S6VbIogPCvfl4Ttabn7cEKig3RVkYalL7fUkOleTlz7G_JisxUaavXmOfZsxs_DBOJ7NoU2RWroaSz6UUX-MkWt1b9K0amx9K_qH6LGKdzeTE92-bW6Du4Z3U0qfgoXM7gPPG0GdSJoKc5Rgim5zyzaa0EBYCKtgGqKjhOYuRfLwcgug9zmzpzSxO-4X4QxwCFVthXCsjWIIF3VDZI8l4zGv1yYVM5a1ifqEKfm8rIiPDsFPjsmTdWmJhIlrmQRgp8t9KFKkYzP_gvmhmbn8_m34sPyoVZJFOp4qWHJSxg7BQ&h=kjlaSKZoloUljsG4gUOij2ujSFtmEDNJ6oK8CZ4s9aU + - https://management.azure.com/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883/operationStatuses/08584258448263457049?api-version=2021-04-01&t=639113588592882666&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=CDQ_Kc0OfjrnIbMc_JUtK49gjvjhTaLZjgf2dsiRuc8QsvH8RpkEwrdCP4SNMtPusOc9g7D3bhYL28m0Dwlt_0k_VecugUaDgLe3cQtwpzUBQVStZZHfYsehSITGpDVWTsDxIEGWpJanzxkyGybPSpR2OLXJsjyCSQ0HWKTDXA5bky6s8AS4hTsG_O0HIu9jn6EzcdIuRMblHwwZj-QL1_SVKNxUz6Un1s68-umOfWP7tqfP-LwCYGxhtP9BOLTGWfbYAB3x5G0Lmc72KqiUnK0jHNB6OBWhYdnODpXMHvLf2t7d5705KITeAQxh-NfQeJMRx3LeI5wRuMBgzF0dtQ&h=URYEK0DgjU5Jf-zD8_FxwYWxPgpXCLTk8Z7tRDA_LOQ Cache-Control: - no-cache Content-Length: @@ -1497,7 +10991,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:11:38 GMT + - Thu, 09 Apr 2026 19:14:18 GMT Expires: - "-1" Pragma: @@ -1509,23 +11003,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - f05f4c61368944e4f9e4c6e9cadf376a X-Ms-Deployment-Engine-Version: - - 1.309.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 75db693c-7f2c-41c2-b2cc-f70628a242e6 + - ca7b26f0-86c3-41c2-a414-9c4151abfc3b X-Ms-Routing-Request-Id: - - NORTHCENTRALUS:20250415T171138Z:75db693c-7f2c-41c2-b2cc-f70628a242e6 + - EASTUS2:20260409T191419Z:ca7b26f0-86c3-41c2-a414-9c4151abfc3b X-Msedge-Ref: - - 'Ref A: F12C426167644A46ABF1C1D3774EE849 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:11:37Z' + - 'Ref A: 6FA056E7606A482BA5CA24FA99D8A147 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:14:18Z' status: 200 OK code: 200 - duration: 1.5413415s - - id: 22 + duration: 420.291792ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1544,10 +11038,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912/operationStatuses/08584568697881260823?api-version=2021-04-01&t=638803338984428409&c=MIIHpTCCBo2gAwIBAgITOgSugw3oUBqO8E_fiQAEBK6DDTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIxMjEyNDA5WhcNMjUwNzIwMjEyNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKY-gKObWAB4EXBsaFuIZWRkYSj1wnm0R3jSIhjIE6sGAT3QrD_tI78RVBcN4n44Ez0jb0-RgAfYTY-c58wthLx3_QbY__7WMNIph1e-Xauq_tZ9NZv0zkKzYIGCdCUCRR7u7g3u5EVq-Qj6V-i533xO3nzORbqINkSZgJy91uBsvTqNuxDebR5suiyGpP94A3_eptrdf_CGQEj8on9vN0arSta9S8bmn0JQ9Ciym5BQylBgGyPVJu5RhlvafJe9P3l_7PeZ8To5sEcch0KWwXce8Z21nayP06Uwc3eeEj_QVHo7jBUXBxUxTsWWidLWvB8Tnzat8vKcB4aJMHmZRW0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSMe2VwCPLdh19jxptzyk3Kp12LcjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFaWenXG0RB-e8Ma_IgPXcx3Kt2gVD03eKdXML3GJYMAF5Zdv_kaRWIT5B9r9QcbTnWEmJJ_kBWkIDdtOtdWCXTnKpIWVxKBFBYMflqbabzm97MOF20zdXF3SOH4AAs36ULLjPpgT2bL9BsXhQIxC1dIOLgpT0XJzedhujL6GZNkhxm0uYrU7JXYMagCZpwpc9dTBqkdeNGORM7hfLnc4ZallS2p2QoDSTAPLm6sNZ0PjAjLD1QuIepIytQaJeYEJ3JJlajnO-AGbDVf2IxiV6oFmCOWEPJd9M5OveD6wN6hWovWh_s2uNrvzIN5W8EaBxehxC-7TAaaO3bpvfRoxiE&s=ISb3Gy9PQFJFieWNzYBeLvhmnU3pkRVGGdujpI6D4S6VbIogPCvfl4Ttabn7cEKig3RVkYalL7fUkOleTlz7G_JisxUaavXmOfZsxs_DBOJ7NoU2RWroaSz6UUX-MkWt1b9K0amx9K_qH6LGKdzeTE92-bW6Du4Z3U0qfgoXM7gPPG0GdSJoKc5Rgim5zyzaa0EBYCKtgGqKjhOYuRfLwcgug9zmzpzSxO-4X4QxwCFVthXCsjWIIF3VDZI8l4zGv1yYVM5a1ifqEKfm8rIiPDsFPjsmTdWmJhIlrmQRgp8t9KFKkYzP_gvmhmbn8_m34sPyoVZJFOp4qWHJSxg7BQ&h=kjlaSKZoloUljsG4gUOij2ujSFtmEDNJ6oK8CZ4s9aU + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883/operationStatuses/08584258448263457049?api-version=2021-04-01&t=639113588592882666&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=CDQ_Kc0OfjrnIbMc_JUtK49gjvjhTaLZjgf2dsiRuc8QsvH8RpkEwrdCP4SNMtPusOc9g7D3bhYL28m0Dwlt_0k_VecugUaDgLe3cQtwpzUBQVStZZHfYsehSITGpDVWTsDxIEGWpJanzxkyGybPSpR2OLXJsjyCSQ0HWKTDXA5bky6s8AS4hTsG_O0HIu9jn6EzcdIuRMblHwwZj-QL1_SVKNxUz6Un1s68-umOfWP7tqfP-LwCYGxhtP9BOLTGWfbYAB3x5G0Lmc72KqiUnK0jHNB6OBWhYdnODpXMHvLf2t7d5705KITeAQxh-NfQeJMRx3LeI5wRuMBgzF0dtQ&h=URYEK0DgjU5Jf-zD8_FxwYWxPgpXCLTk8Z7tRDA_LOQ method: GET response: proto: HTTP/2.0 @@ -1566,7 +11060,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:12:08 GMT + - Thu, 09 Apr 2026 19:14:49 GMT Expires: - "-1" Pragma: @@ -1578,21 +11072,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - f05f4c61368944e4f9e4c6e9cadf376a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 53f9da62-30ad-4dbb-bc6e-acd086225b50 + - 06e83068-46d6-4630-9627-f8da7d5332cb X-Ms-Routing-Request-Id: - - NORTHCENTRALUS:20250415T171208Z:53f9da62-30ad-4dbb-bc6e-acd086225b50 + - EASTUS:20260409T191449Z:06e83068-46d6-4630-9627-f8da7d5332cb X-Msedge-Ref: - - 'Ref A: BC8C5683B2314C7DB14480C146BBEE01 Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:12:08Z' + - 'Ref A: 9F30C875BE0C47B0877331789DFA163E Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:14:49Z' status: 200 OK code: 200 - duration: 243.567ms - - id: 23 + duration: 220.433792ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1611,10 +11105,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.24.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.24.2; windows/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/arm64) X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912?api-version=2021-04-01 + - f05f4c61368944e4f9e4c6e9cadf376a + url: https://management.azure.com:443/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1624,7 +11118,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w16f971-1744736912","name":"azdtest-w16f971-1744736912","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w16f971"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-15T17:11:41.0726963Z","duration":"PT3.7235984S","correlationId":"6f6a2229de47a72cc0fad9c9201e1dab","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/5ca082f3-38f2-4bb0-b0a4-c401184ae3a8/providers/Microsoft.Resources/deployments/azdtest-de1dcea-1775761883","name":"azdtest-de1dcea-1775761883","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-de1dcea"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-09T19:14:20.0329356Z","duration":"PT0.9165504S","correlationId":"f05f4c61368944e4f9e4c6e9cadf376a","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -1633,7 +11127,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 15 Apr 2025 17:12:09 GMT + - Thu, 09 Apr 2026 19:14:49 GMT Expires: - "-1" Pragma: @@ -1645,21 +11139,9243 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f6a2229de47a72cc0fad9c9201e1dab + - f05f4c61368944e4f9e4c6e9cadf376a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6a4160a2-d3da-4494-99e7-999a3a5c9bb6 + - 53168b23-6e47-4777-aa9a-ca052a8a20c0 X-Ms-Routing-Request-Id: - - NORTHCENTRALUS:20250415T171209Z:6a4160a2-d3da-4494-99e7-999a3a5c9bb6 + - EASTUS:20260409T191449Z:53168b23-6e47-4777-aa9a-ca052a8a20c0 X-Msedge-Ref: - - 'Ref A: 37B274778C2843269C6F0CDFED50797C Ref B: CO6AA3150218029 Ref C: 2025-04-15T17:12:09Z' + - 'Ref A: 529F61C4E84C4772BF11BF50E15E0EE3 Ref B: BN1AA2051015021 Ref C: 2026-04-09T19:14:49Z' + status: 200 OK + code: 200 + duration: 151.5715ms + - id: 34 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/jongio/azd-app/refs/heads/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138770 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "jongio.azd.app", + "namespace": "app", + "displayName": "App Extension", + "description": "A collection of developer productivity commands for Azure Developer CLI", + "versions": [ + { + "version": "0.1.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "reqs", + "description": "Check for required prerequisites", + "usage": "azd app reqs" + }, + { + "name": "deps", + "description": "Install dependencies for all detected projects", + "usage": "azd app deps" + }, + { + "name": "run", + "description": "Run the development environment (services from azure.yaml, Aspire, pnpm, or docker compose)", + "usage": "azd app run" + }, + { + "name": "logs", + "description": "View logs from running services", + "usage": "azd app logs [service-name]" + }, + { + "name": "info", + "description": "Show information about running services", + "usage": "azd app info" + }, + { + "name": "version", + "description": "Show version information", + "usage": "azd app version" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "41fb3508a317e9db5f41d8ea8bba03dcc9690166c9562353a1c4918a7e5857d1" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-amd64.tar.gz" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5151952d06ab563d2fad1b8fd29e62f08e65f2288142dfac40a0545bd93bacb8" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-darwin-arm64.tar.gz" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d54ab97d17455af041f6d3c29380a227e8c47c4c5069c942d53d476febfe7653" + }, + "entryPoint": "app", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-linux-amd64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f4a4f2b129c8c20fa5cc48038c4f6300612a52bf3f7bc685dbffe5aedae4867d" + }, + "entryPoint": "app.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-app-cli-v0.1.2/app-windows-amd64.zip" + } + }, + "entryPoint": "app" + }, + { + "version": "0.3.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a333a2dee03fc71487c8f865ca01efb9142f273ce1269fe2ce1094cdb905706" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "37626090501ee87a5192bcaf6746e3eeae5c756fde29b83c10816ba704672d60" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "218403694a191ddb91eb7e7c845465bda34cd498bf029af4c7c32dc12f22d5b7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "12ce095e7a56a88b9d30fbefdecdd03155efb60b53fb13dffbde82dce66ecbc9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ce3fac7a3d6c2f166b84590fdcde09f520a4c688b947065b0d9418a65be7539" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b675d160c6ce687dcbe756a0d979d5c4c196d9087fac0f51a56079a6b4804f2d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "/home/runner/.azd/registry/jongio.azd.app/0.3.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9f7671f8288acff8714fcc70fefcae2207497b3700b11b31a68765607be599b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4672c14c7787034df4f073af20e73e8ef95b5b0b94e59a302562b0ba56b8ba9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "515e0ca959ca43eec4e257a28098fcb01c06b162c80851d73451604c04d71f4f" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b35a8fd5fd0fdfebeadc7324f552768db1b9b2062e26ff8142806fed6448739" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f103919907187e7c5d218ad679036d7c3f81bbbd2ce56d2cedc1010a8490b688" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42919303ec15bb406d273b018833a0f20492c31fb4af663d163581f4111640de" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1448ea38e73912049a63ad967d15a6311d006c9fb329f920734ee2bbed8a3138" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89024d1bd33945e4fd5d120debe2496590a2ff1d2e88181dd56e57111ee08a8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6feaef3e7e287cb34e3e33c7d3f98f5c3b70ae6984a3f5ae1ad95f58040d325" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "14501a90da1df691e6230d69214e0dd30cd790e572864f28e34c6645f3245bb9" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5dba0c4132590bbb1d96096ab46ad1ffc32f1420ca3331600c2e2273b2ecf49" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d09b9827c380a9047d312180fa84793401d178cc274b0d41ca1ae5a2062b1ab" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.3.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f497f1ab9734efc2aefe3ac387c5c888e1c4f280b72b92df3d75ec1f1ed2853" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a730c26a05e04a6f7ffe3ce4c07b286f6b05f4b0513275f69376cbe922855b35" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1e99326c0561b2a140d7e3853fcfe92ac5f4a58068201e8401c670110c40a89" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd1a96659b58377da59c720b326030a2455efeff86896dc42eb9948155861b57" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7b4e15601b399acb9f2c474f3e601c4cb31d2eabb2b78960dcd7e4624415c38a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c5d097d7b18b1e71cd54dd27dfe32aaaf31eb1b79ccc6effe246d77e1f818c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.3.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8fc56dea3350b2838d7787b49079e98c8e900476dcf98e880fb2b4d772c7b852" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0aa5f11d477bc5416367038cbd885016b409e21a2698c5ed1d524840270c1203" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "194d2a8366e3c63c47eecb61827a824be5ca91e989a26910c3df9058016e6c33" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6220b30248cb8283c8204fcfb2bff44a81f442993f6e36daff969c15679341c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b979655d55f2bcb5e1e090b5327d2faa630fa8483bf0ab9cf4903e47a9b51595" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4495de1782c883f9cb28acf96918bb8d85aeffc99cee853c82a4554078c6e9ad" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.4.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3106ebc1ae05217ee843f29e2b6cc35208668d238e1d25a686e6055c6b2fea60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a393520e48e0407b8d2a9d1f3a4b1f41c60ea26a90a4624c8fd8338e06e5ce9" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed3907e1c4d05506f121c0af72eaf666efd61f8f360a2efc262f33df67dfcdb6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e800ae44422f9443fe03cd73e9bf3a19ce8b3d1065e9966c872ca4293b60892f" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4343ef749b9ff8240b56f078145e7748914c80ab95512d8436399c99c304584" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07b278024a9f3252730d3fe0e8787081569d97c6bc7975fe6ba7437efb943b6f" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ceb83a6c586b807d9dabffe82a84d753d02999c706b5a618ef99eb647c80765b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e9ed31f0b3322d474f811fc52a9fb1fff723979b1821ffb7cb01fb643a66e8d" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54e71fe0df79a52ddbfb56d59f1a66d69c3ce7d372ac33585be3004dd4b940e6" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "994eeae8a9999704f0999be32d6b59b5bb2e3c16c5ee9ba8c4fa6c5a022c7565" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "01f34442e5de8e130b74e4dcc3b27b643dfc7c548152cd89209eb60fae477905" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79b22978f7f6b197252a253f47f68a9de2bf63260494049e773b85a5d61a6a99" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ccfccb74a2fa8a3ba6a8d08844232a17a061a3defba652ff81d2f8a38e0a08e" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "247816c198c4235be2e900fb18e1bd0c94509c86eaf7c27329dd11225fad4354" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3036c09c45e5deafebf9170e77e87697c7a16fa9fa87af98e8316a0dd3f091d1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9a821e4d9457fb4dd98c88134539c53f0169f60522750bc74c4f8d79f706ea8b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38ece0b5586425beb4e1828db03bf1b1793b9643329f438329923c53adb2dece" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8aec44e806690c4e084b1d5d3c40b60e54ec249513afac5ae6ee63f1a1807884" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d534086730f8e8abc964f0e82b5f24f4636e7e5e1d713bd8309a0e6b6aae05" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d01f4e84223d2999a47d0147e7d414753ed09b75667a491ef4a38d500b4a9144" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0599a61bf9be3fc14d34325300b193948ad2a70feaa73be0b9c38a92042de714" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42fc1bdd83f01412da011afefe4d1026cb86fc90887868d6010c6215294fe745" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b123200c4947bc018f1e1b15cc3df7f2c63a0ac827428c32bd8df43aebd31d1" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1e1ba71d40f47c4028ad8a3db5d490f8bbfce6e849b638a58de363280ef71fed" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "af003b7595826b4b90aa3ab89931ac4d1d47f226f150d7e8e9b97548257e3e32" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b724169b29f226dcb72d65a598879a81240cd62af508d6110cd092438ea5510" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5bbc189889a4890c1c8808f91a5021ddbab23301d2585b7aa3c231c65c39616" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6165aee0f554690bd86fd63a9a67484bbd2c0a40374a203ec9d6f4ab83e1bc71" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d484fe01756b5a2c9bc6fc9a52fc781d86d33d109928623d3d92d88a43238faf" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ebe3aec1b8755d353d73934b69b7291100f48d5fad4b003bb7816ab189c1c0" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4115ca4be2e323f687613121b0d35616bf61ccbc9d9826eb5f081de92ef9980b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec060a2be2c5cd6d13f227f0b17b5d8624e2838af995d0ea4dc4e75eba8e5590" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed9e598e36a9e905f47596371abc9f86bbeb9f6781b7986871df10af4b4fb461" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e0b05cc48d38d19dc3eb3ba4ea387ba3f5585478a9a10fd6e9819f5208d00e7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a8f2fb99b11a4c1810409acec5ba389499f40d1612f96944aed3ab4404d7e33" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f73119758911124feecf56c92bcf8ac0138bd70b15dd00a789079be68394d859" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7fb82302a8061fcdd22539f7912305c952f9b60808f4835c0ffe14f5217467" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "201a526ada1b49106505b260adf0bdc4ad1ec0c85a00325d13d9ff5367a3c27a" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51d5626173325f7e4d1e0c7b382130f45e1fc93df9284c58bf6a3ba5838be2ae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3f15f7af64c7e7669fd5206e6b8be429018b65d7474fc0ce88c9250060af94d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "378675c07e84acb9e87cb2941b2b48888e16f67e2245540995bcce48a97f18ab" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4706f280737bdceac12de60eb9a84ee129001bb1b64253549b074f5c9845318b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.10", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "38f5377208eb9137ca1524161edfb9e62585f93affd50d672d7ed0fe2a389902" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "792d74f9e6655eacd95bf232461030c746f5ee4830a5ac0f3d18daea065326d1" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "34a4d2df854c13ba17fe88cfb548d78c7da8237ab96d1f9c34444850a242dec7" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3bfaa49faa329cb91537cc268bb435c66b154fd21bca6cdd1959f628cd7fb309" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87490c539613d31834abcf6fbebc81737d642da96e07bd030f880d739f0b3f5c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "672eab6e4d11bf39cf0a53ce8fde162822badb293778c2fc4e26db8638eab32c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.10/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.5.11", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d78f327d36fa81a86c3aaf90095a5b2127b4a0878e097ba42a16b9970c7bb4a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98d260a8f1791885a486f796ade8e6fdf0b1d6002e2d7e9fdeb2c286ed64b076" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f42eb0ba3ecab4480da33b3800c89546e3f27a865ff11070f9ce3dbc0dfabdc" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "804e370f0592f3b6c8eebfa6fd4ae2a25c983a564a5d44fa5cfec949514ac497" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4666e41a7b8ff43f652e310364b20b675be1a40faff394374bb4098214883c46" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5742ef0b2c929a5801bb51d00c471e0d6bc77a8b8fdf8bd2eefa3652a9c1f7d1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.5.11/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7baa3e3b42488f9943c0fb6e673b25b1e56bd71bfcc8a80d72d91674cb9ddc1a" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f56452150489ea50eb55393c8fc0dc224cb183a925507e0e1aee97cd31deba5" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00f434b8d233d74b6097a4e03871a3a33620ee645cabe79075b157aaa2a2703b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f03148fca7351fe87cad6dcd81e8ee0f9fba29bbb745af8e29ff7024c145ef4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c14ac8a11a14a6469d234e46fe33697e5bf0a35820f8ef29763e311cb0d6b07c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "942b37d5d35137d1991739edc4907246000fd7d5ce22d76359fab147abf1bbcf" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d9516796967eaf765da3420dc21087ba0054a78d5befbdfb031df5b46290f21" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "595e102f49f24847e1a8833b7b87dfac013f78486c96b8913bb00728aa95b0d6" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afd6c4747c22cf2679f71b3a8b589c08975713b1e56748a908f5823f90ca6dfa" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a516860c5c60eefd34d3e295cd2ad3d6096989fdfb87e5ab9e2f4ec56f6fbb24" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ac0ccadaea1188c634301a1989ff750e6be704e192374c6fa3fff9f19dfcdc6e" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e89adf72f04f89c921078e30a9d2a1a409c0053ed475842391b96a3487e4806" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.6.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "37bdbc037bfa471b97c5e02ec9e2d1a49d2f748242fd594a156e691f85449769" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ada0857224a7efef5f010b4685214d3014604d16e4ef95c1f8a69bb695ce98e4" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aa47d9bb3d6ce0b9fc665a8cabdbe3cc5f181521e77e24572c2849c9be9efb" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94d1b293ee3a794c2db98d04d26e563ce547c1becb7f6b6abaaafef6ddf8d6d3" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f9d90d668fc2f0f8a2e49745c2cc9e515c6b882f28742aa382b4ef2890bcb7d0" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f00ee8a9fa33c0dbeb9d724939bf519989daaad5157759ab600565653f96d37d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.7.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "95d5c79e9b166ac24a6358c84ec07158f1ea1acbdefb10e4f4e0f9a379098a17" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "504a15ccd576723fceafcb30673447ede36ec2c13d8a0cbbffeac345ddbad184" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ea2b5d4a78575f3ac398c60a9e405f7ead9c4769090ff7608caa699ff7f813d" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a90788fc02c4d7d19472a1b9e0af5969589d9975f20f77abb21e5a47a6443b4" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e35c579e01007ae202cc9e8d69b567396bd74a1dab71dcc4ab8f486639db1622" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4eca58e42b1d09d33964b824bf98199f0915510cc5f716faf0dd50afb2f0c9bd" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.8.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "433396bb862f8f4924ed47019ccdbd292cea743ab2a28b124694bb240142bd26" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4bcb78b823673d40e497bc351b6d924145fdea0c7463ca9462fcaee814f55fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "789bcf250a1f70033749ec50c5b2a43ddf6699c0d4e0bab65141e113e43af8e9" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e824dec051de10c7a2948cce312eac04fa831fd428171472d81b3d6b3621fb35" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b6bcf8b1eb626ec9cb7efd1e4203b9372df378e5aaaaf540db624e73d6ce404c" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "771525f0d4e75c29867dcbac4b91e5f4a0deb99a569afdbfd8cb0e7c832a4e67" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.8.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f98546ee13b4a11783fc0bc3214fd21c20037cd33ced405a67fc3060233679b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8a64a6d74551271e12fb0219f73d25e4e6aeb279c1059c7351a1bc5094b89063" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2db89139646230df315c7feb7574ee9bb613257e9d512e70bff9c11f7acbe88c" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "64227f7b5ef11bd45fccf8144bf4306b97dd97a78a96be32493193cbeeae98e1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "afa1a359e31aeb6d22363d48e3c405e428aad4df55912df983f748e731e72696" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a4d8c66835ba633c9098099b490a7ff0f567e3ba150b6d8728103003f9386e1b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.9.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c867afa3935b07be4d70606c09b5e304200a2337a5690080a9cd4c755213762" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b2760bd547ab34ab53d4f6c4f511b03d264f60e23d318c1e0a2c4059aa0ecfa" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3485d916fbebefa05ed3f25e2413503c8753962487cb092895f47079c602ec2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08f763e1526d6a0e0d631d81b4ddc2e3bea05c593a08a90a178f2ca8a50a5da1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fe5fb44b92e3e9dcb455ab7b16e51be9756a9b6cb57fe75af17ef15fa2872b47" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80396434011c8f16691b6010f5e65cbb5b0c61e6a62c6de569ce7702be579880" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.10.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63611f66eb81e6d0f0e69b75eaf4491e24eaf233c4f1d20c94c69caa49a5ab" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a185b2b68c0eec0a224d0ef6d681a6d00f7d1f3fe66f37652d2cec29b91458c" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7eff51e14edfc8c0edd31a7a9b5c89e29a730a6da773c34a96afc74913cb621" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6e941e010a33fb2e31529a9cbcdf27406e3350639b852cd212da38b8cc135f7" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0c72a7276685440b5d56395a59a56a3b59058a289abdbfc7a9f45224bab6c95" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "545c9bde6c929fea666e261966ec38c9db293bf53c82369bc47dd47dc742cd3b" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.10.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f1a802bb3e34194a03d320bf4b91065eaa16770c3e2714e00816ed328e2732d2" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "80d2d33558ed7f16bb65417e1556ce02feea98522566a27e319617fc11cec306" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0f5d2617be2878db38ed215536b8023c6e4695dbaa7fb272821eec5ade1bd9c1" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3496cb21e01829e61cf85ab1c86712e27db60a1c47048efe35fedfa9fa669a3a" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5ebb38a7c492e3b0bba65ebef2deebb5f5652ad640d7f6f30b1fdf96cfe0734b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3136b60b4f5873a56c896eb552b72d0af6fce2a268f212569d2b570584dd4987" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10cf12ef090637a3314f5d1822e4c16ba06464c9f56be3546c5f966335ea8b16" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "614f3101ed80bacecae1a6c37471910835b2db17ac79ce65d95372a96d5597fc" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "69b606d784f043a52c288b476bfcb60a10789ed82d323be06beba5b731a13090" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a7998eab1591a90b23bbb44759c9ed60c4fe09b3ae1af40594e9b9599fb5e52d" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0204be32e4017254437f862c8c4d8a9f8f9bae4b4e3fd98d9ad020ea4dcf4784" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4448df29835bb4dc89fe24f0b8de3196002c39599a93c109300c72c1b4748414" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.1/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "839bbbc04572fb72a6b0f4a6c0aa20f03aa0610a626cb06b68f949d839d95e24" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ef5b348630f5be36048e957964592d0dc11e03cb91480911b4f7f713027e293" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "caa2dee7ba47a950cd90610cf06dff0e81cc8b05ff67228e4f98e2e2bf59c695" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dc4dc9f88f167fcbe03bda911986721a1ffedd0b313f7466daa1497be249a219" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33b18e3b4303f0d69989f88b645233e814e97637440177319f7066c8472ecbb9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c17f0523750c183f448100305809fcd7835a83769349520db57b1fe8f147bf75" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "464d166ba865f0962b07b6aef53777740e67e844d8ad5a99190aaba23a9d82cf" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "07ffa5d33376a1fb7ba2f29b381995b0b72c044be6ae4253e25469d199f79257" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d541e74bf5602b95d3cf98f8ea57d7f4edddd3ad30293b8d3ca32ec15326b588" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0dae5a9e7b87f406198783e1fa6241199eab786c65175505de70fa95dc8f31f2" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4329a7f9fe1c1985343aa5e88812093eb90d8ae5241a2937defaef7556f920d9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78193edb23e61c116b540a3d340bc7ce124f71ecaf7667547681bbb50fc21b6a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31009ae8f7e17d9d1a20b1878884dd5902ba00d3097c7cc0d9f593e4da365b60" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "43f4cb9c053a471a5fd24349c0832f5fc7ad28d817d85810a68bcbd47907dd5b" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a04e00864d5c48dd7d1123b64e7db5f874cc9d3b004c831b58c5d5c4f0d789a" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0804b9ca6e0a66f81da9f07e94b8e26f1b2d48ffd1529952de8f33488d0518c5" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1504b777ff974b8a25b920a9b2c615ff3c65a5fd3093fd3eaedc377f8cde01ba" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af85ec184604eca6b5df10aabdc125b54dea3e387c0765c1fc9815a1779bb7f1" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73c114562b25ed16e3f72a233f13d924a33fbd31b35ebad2d44aefbc62f8f1ea" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cb04ddeff840c8e3818132822f374b325e19a9a1e34a1318ef5181e6d2475aba" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d423f61652665a43af88336a9d85b8da61a49bafe4daed07694df7b12b52d7e8" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97c9247e0799e6eeee49366700c960e95b8a4746763a48b77c5c9c25d65731c8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5f2073fc879dc084903b55d9a8e35c8c66e591b4fa73451130feecdfb9f515f" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e36494e3f13be207767cd7ff504bcdbdee641dcdbc0ae7b9a85cb7c6497c13d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "92578ace3ec8364d1ab4a8f4b15ff8f42e8b0c3efa1bceee1d9916c0c50c4148" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be1e04d40cdbdbf2f4a893fd9716a5726b0deac16bc461b2eb35c23580dd54be" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d993e0fb669dba6066d8372256a057dccb5bb1b9344ab6c1773625e331c17419" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e48315099110e2b17b1525016ee02f2f12f6b07aeef24ac0e3c40bdf51758947" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a064c3d5708c6092e197d74434686cf8b225cfd8321f803314741a567df765de" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e53a05e5a2d4d041d0f369fa73f6571421fefbe6966a09524c9ff67654f53f42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.11.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54a542305221fd2becaefa6cbbec3cf8157744f003a7d8fd59e44cce404f6502" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "278155a87c622061a2c6a42f5e4c775ed2da5bdf9b289e5efc4128de617ec664" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ea5eb5621199337d63c860f5afc414e216d5525f275f3383f175c6afd3444a2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b4a6a451738ec63f5eed56980266a5d527c4aef532a1e54c3cd796ef132929b" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "414d38ee0c1f2e99487adf7ee57f0a55a8d12d18ccf68bb8e2dad9711e01707b" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0f78e5ace1733a545bbd2f9b1a5c75da021bbe8416f3eb1d47794539654a54d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.11.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "382b866d22823e4c8acd8cd0392306cadf0504242b3959774f28f0d483097c1b" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88979e31271f5f68e22c2f043e87dc824dbd3114eeffe07d1d1b33aba8e028f2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2afbc4f270b534f2560b8dd4004861f2505357111a9efde3b1d6b17b159532b" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "72d5f30d7e89adbc2b14924471c1c872d52d4a21d9a5380ab2148a0eed63c3bd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cf31889014f9d14db3ec14768d9075d768aa0ed2ab42650e43b15f95a4f1e2b9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "787824081908c0695888e3c60065d76103c31e93ff641adddf9674d5c662395a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "467012c733fbdb7f2b82a4c4db1d8bb580317724b7045d45375cd2867228fc38" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9dc4091b698e8742a4907f3722854d60455aff559488fcbf979e3c9425f87d2" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75915a0fdef9489d256f50d28a1c1b5fc9cfe07efa828d067dcba587e8a59cae" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d1cc37d437b5d6408b78018f13b855b9597cabdbf7278ccaf37a066e9bb26fc1" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "787d32ea24a1be1e7fd0ce10181037b9ac171fd01a0169d692c41c064d0498e4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcfbe48bd30175fcea14237516f1cd0c8214679d4b310b2551cc43d048047a42" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.4/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a2b99a34f92246076fea2e4393d2b8ceeb00e0b85d82c158ebdc76d4afc7520" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0544979b0f6f95cd4684eae95cb28a2df843c441d056875e0ce93ca4c7125ae" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a80c849be68d61c9051c5bc4fb8e7636dadc3379bd2966dc3555087af16506b5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "77a59b5fb590ae01ed47a4feaf875236a3a3b0c3f2255245810d5b77ef40eea8" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "40c8b9f979513eee3982bfe5e8bdd96b71c85e2b0abbe800ff38cfaf6e4192d7" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c7c5d64b0e4564b61930775d3f3dd3df4884e31a2e18d4827b369a34ba0fe58d" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.5/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87c2be302ab25a7864d08b7895e29589b9c7e0370312e0ff556052655c4b07a8" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "004df1ffeec7e6ebef796d6a2f8fafe2bc512d0d103b82cc6ff4ceacd7cdaf79" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0be1d1974bc7d2b337d5a586f24dc2b34a13036ed0de86afbe96fb5972bb06d5" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4f0183e1d7a91c80ddc810020b5da5bceca62d1b1a7347cf13ccd8e5d54ba70e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "39b1264aba1e1764fe4eaed8ec750ae9d86de2e432d92900085f93c740cb0128" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4271c7c7544323860734a0bc7fde562dea3e38c19cfe506a7f68ddb38b658e8c" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.6/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea0ae0c48c6706c84a7c56ff89269281d6c8d85b03f84538c1a1e0b7ed3cb474" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "403e7da74785268719f7b096fe616a526d5b291164fc57b9020b47dc865681d7" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a309944744c532b63c0f147bd3460e0a2bc4c4b5ddbb03d8de1ce691eef59ef" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19a574ab766a0e2043cfdeecf9fca0605d3eabfef54414b5e3b0d6748887de43" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ddd69eeb694c34fd9a44646f3cc4ea96e5614fd54883d119a59e4bcca3c0d113" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8673b807cbf1f8e503bf40f50af57890bdbe4305b6051002feb3b601a5f2bc56" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.7/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.12.8", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bcf298a673d8743473f39ff2ccdb94f30ab95e6a05ae0a7f0c2c88d946735b9" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98ba83b75dc797653519186b3c8623fcb04353a7dca4f317fb9d169c4e5206d8" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6558310c9588c406b92b1a4aa2547afe8d3013c49c84ee3044eb60dc833acb53" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ad3a012d40e6327ace7c336d1ee7a74d265f02e0e364ebda31041e07930fbe0" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2ed1fe4fb4efbfe4c9fe52dab8c13816b62483609a96bb2fd996570e63e80a9" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6e8a7894455fae886e21d7edfdf8edba82469a9f16dffcf935e9fa2f9245180" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.12.8/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10b095cba2452b84205d1bff61cb71c9f6dbd2893be64338c80d6f82e00c2e93" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "058b213076079f51a7cf7c8ce586b094fac61e37d9aa574e9b0d0c2441806ebf" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "16804adabfbb17f2c714fb546347294e7bd47af11a00bd27104f5407c03ebf4e" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "874edd7b61ec906107989bc9044ff2e954eb481075a9883ad0f57cb350cad7e6" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "888220734fad62a93e6fa153bb4b4619930689219d42af03ee1d8379c6fc49f4" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6187b83bc4ba9a5735b586135adb4a3c98203bb7bee76f856dd0c9b28f1d0ce" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.0/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ee8ae137b0952c2637161334ba8ab711501c7bd9532f57eccc04b0d6a3b1b18" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "184fac81573e2a24fd9dfd467b7188539e1618289a528ac40bfb11b149abe950" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0ac2fee3d1e74b7591fa8c85928d7a90f56aeb9ab55d55d402ff75fbfbbbdafd" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6baf26a1b9c80c9408d4166bdc0853f46a0529383c5be5a0146de63176271dfd" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c8ce4cbee6813a068e5616e039fe66e68f1ff8432a55ec9153b5fec1e9f806cd" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346cd93e253eea9368ba24574c0e503b1ab26811d4cde5ac8a4be210706178ff" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.2/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.3", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cb0e48e01c5f236f15dde4643e9e0ee1d3b4eed955755c6b44d99e68584ebf48" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e81351338ad2868561b84feadfb8da5512f80350bfdafa2661c284d850003cad" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0a626b2e98c8ecf30d7535c44187ec58d67067895fb1604dcace2a3d66dfaf76" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "594777a68b13891d4fca2af17f6c1e44b3d2cfb23b59794550413d46571cc98c" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74e419ce2a8e698ccf90bc5057eea46c263a158e34b0b3cd6873f03bad67cc57" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c5f59ece088fe94eae3914d2d1230ffa30a718b41b9023af44267c2eccc35a" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.3/jongio-azd-app-windows-arm64.zip" + } + } + }, + { + "version": "0.13.5", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "local", + "type": "service-target", + "description": "Local-only container services for development (skipped during deploy)" + } + ], + "usage": "azd app \u003ccommand\u003e [options]", + "examples": [ + { + "name": "run", + "description": "Run services defined in azure.yaml", + "usage": "azd app run" + }, + { + "name": "reqs", + "description": "Verify all prerequisites are installed", + "usage": "azd app reqs" + }, + { + "name": "test", + "description": "Run tests for all services with coverage", + "usage": "azd app test --coverage" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7046d297e02429ce2a642180dcc82edf984f6d24c59069478e522af0592dda5c" + }, + "entryPoint": "jongio-azd-app-darwin-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6a801d66b4020efc76f191dd1af236123a1bcbf10ed57ae1f6de6c893e35fab" + }, + "entryPoint": "jongio-azd-app-darwin-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0300efba7e3bee75509f938a0c51e7b96c7b0cecc9e91a05c036696a980d17b2" + }, + "entryPoint": "jongio-azd-app-linux-amd64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a5771edf7f9c2bae013cde6cf2127dd2c08acdcb437ee56405955d6fc1c3091e" + }, + "entryPoint": "jongio-azd-app-linux-arm64", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d86109e194b00b3c6a1dd6db2b929fafb583962a099a4591592931781f9267a" + }, + "entryPoint": "jongio-azd-app-windows-amd64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "351c677525a1549ef8c21341da56c8dcb42d30a980586e73d92f1e78a9c29b29" + }, + "entryPoint": "jongio-azd-app-windows-arm64.exe", + "url": "https://github.com/jongio/azd-app/releases/download/azd-ext-jongio-azd-app_0.13.5/jongio-azd-app-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "app", + "testing" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "138770" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:14:50 GMT + Etag: + - W/"1cb83e6649b6f4a747100b2d0c8511469e2ecf015f09f23dab9032004987df8c" + Expires: + - Thu, 09 Apr 2026 19:19:50 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 549ea44293f2993ffa31fb9bce29971536400bf9 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FE6D:96521:69D7C88F + X-Served-By: + - cache-mia-kmia1760083-MIA + X-Timer: + - S1775762090.259107,VS0,VE47 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 152.444916ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.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: + - Thu, 09 Apr 2026 19:14:50 GMT + Expires: + - Thu, 09 Apr 2026 19:14:50 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 + Server: + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 108.001167ms + - id: 36 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195006 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo \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" + } + } + } + ] + }, + { + "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: + - "195006" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:14:50 GMT + Etag: + - W/"24ec2aac2b0544a4147382f778c34f3a327df7bacad85ffa1fb12a715346ab62" + Expires: + - Thu, 09 Apr 2026 19:19:50 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - d3e9e2c5fef5671104ed917a5e06921c4411d407 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 80A2:3A8CFC:241D96:2AED6F:69D796F7 + X-Served-By: + - cache-mia-kmia1760083-MIA + X-Timer: + - S1775762090.453790,VS0,VE50 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 77.856459ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry/dev + 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: + - Thu, 09 Apr 2026 19:14:50 GMT + Expires: + - Thu, 09 Apr 2026 19:14:50 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/registry-dev/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: 213.032958ms + - id: 38 + 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/dev + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/registry-dev/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41722 + uncompressed: false + body: |- + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the AZD extension framework.", + "versions": [ + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.1.0-beta.1", + "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" + } + } + }, + { + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "version": "0.2.0", + "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": "f60342a699d170978c0454536577440b7ffbfc4262870873e61382fabfa200f2" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a043256c5379086f160c5d6b53660c948ac9b7bcebc3c1238e7b53c9951c189e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1120ffaec46a1a602ce3683fea355537173a38628d21544d2edb3fb70e11176" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "835c7f1a2a16ffbd0047b2a2c3192b99a0d374b521e2d4d38dbc21d913cfc5f6" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9b6d2b730e6039c3f9f294ed01691a2b067440f3a596f5e58317a7b622abaae0" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a0b20cfa81fd2d7fe7ed51937548eb0af1ae4885cd9da8c91788a851d4f333d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-demo_0.2.0/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.ai.builder", + "namespace": "ai", + "displayName": "AZD AI Builder", + "description": "This extension provides custom commands for building AI applications using Azure Developer CLI.", + "versions": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.1.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "349e96c151af2636fae3acb47a0d1f3f4b89c9cd5a79bf7b2e01dc36ba5a3fa8" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f89926ba357a2ab97d6dcd61be452987095128468bb42182a8a8f867a41d8861" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a000a539ad3c4b3c394775866a82e2a3fec42997e7be6c1e42a77c5652531966" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3cc04b42440a185ec1cde20634e1ad9bf13b54f1a2a3033fad2cc3f5f261e164" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "389b1d71574f5978484e74b7bd44f291f275f46ade7c91c68a54c2708d2df3bd" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "689220b5db67602a3fae56f8595f932a07d882b5025d628491eecf800ddcc3f4" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-ai-builder_0.1.0/microsoft-azd-ai-builder-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "usage": "azd ai builder \u003ccommand\u003e [options]", + "examples": [ + { + "name": "start", + "description": "Provides a guided experience for building AI applications using Azure Developer CLI.", + "usage": "azd ai builder start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8ceffb7e42d51e97b5b55aaf2e155f9878408a3d906cd311cfe13c49cbb93e9" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b6215241c5f9e7554c3214e192a16035732993bbba54aef40eda4f99f23a0f4" + }, + "entryPoint": "microsoft-azd-ai-builder-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c2064e3210314179a990b86c3f48cf24821116b12326db3b5ee474e45a8efdc1" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ba802ccdc4dad242367e9565eb9d72cf2dcdb6efe422ce32761dc2842f95f009" + }, + "entryPoint": "microsoft-azd-ai-builder-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "87a588911ac3d456d068d7eee0c727998edddb6e17e000135252d1011c484e0f" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e8531e483d39cefc07bb24a44d8f96cfc5f91114c3dec4fc66ccf6c82c05652" + }, + "entryPoint": "microsoft-azd-ai-builder-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-ai-builder_0.2.0/microsoft-azd-ai-builder-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": [ + { + "capabilities": [ + "custom-commands" + ], + "version": "0.2.0", + "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 an 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": "6227645877f845e8dba5f31a892319e9dc5842eeba10f44a87ae8a78b7dc7d16" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "670f8407255fa71d9c652b672772d7540864c95012c0d6043f1816e70fb76c63" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "477948022a770a4bf3201706284395fd3b54e34b5de59c69648fd249c1fd4ca7" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d7b436a6dc45338fb5db4972a2626533c84e1cc6d832d03e7ba496a330258d" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cac38ab2ab5cee470eb3011f7a8b778f1040996796b12ec9db5c047df8a9731e" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27799e4110512c1a9da86c64214edb8d0e83acf330c4364932dac48dbd44ee3c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.2.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.3.0", + "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 an 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": "07f5cbf170ffbb5c3ce599910c5baf454f5eefe071ea56538946cc0cb3dd32a1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be39eaa26a9c088a337cff25d2fd0147529229383a80966e8364e76886631e1c" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9db0b14c507482ba201a061be50f91b3bb06a7e9a10b1da1819b20e5f0568a52" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50b152565f1766d492827c7e9914d162ee9c593c0f351a2f52ce7ea9d265eac6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "072531bbbcaf7bdf7b8af2e60394ff99589a75d3594180a35d4cb3762090afa2" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a90fa714037615abe43d940d1ec2cbb54ad81f99c24fd4c093c7289277a6774" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.3.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.0", + "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 an 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": "a921837ee2ffeb0bcddeb0be05050e5e1b0b4ad2fa14ad33da5c1e0168a0141f" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dcb96d63a61207c2f848edf5949e7bfbbb6b389c2da66e901e53c941c16b6354" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0c749cd32e52c12cbf396952e842cd052a605ee0b5465316e3bf4f78fcbd1895" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "49422e9f681b6674688ec63753c0d5b5069a1791bb3e5c081881b2e6e8a5d89f" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "eb219d13b826057249b67e54ced65f79905682ad44493a56e3be75103cff130f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c44f7a65062e1a507d218fee30872286e455223928f5588310123e5be870e9c" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.1", + "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 an 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": "42fda403a2fdbc916ae41019b1491e139a28f0c66fa555d5d8c48b8642e82c12" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "886ccb071d18b07e97a82363ccf83f65d604217eeebc956505851f6f746cb7d1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e654535a9f8f1753f0c468a1cf619f47c0abbe87f262bc0496489f761fefc9f" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-amd64.zip" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3fe9d19e73e254f526bd69967d10771140f3a64c47148866a2402f576d767434" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-linux-arm64.zip" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "31166acc1fb2fefd31f88c661ed026326dcb211217e6b488e2fb9de92143700c" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858f4e0f60303e4838add3a3c9abf25b4d4b4466ef9afad9521651a64eaea4d5" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/wbreza/azd-extensions/releases/download/azd-ext-microsoft-azd-extensions_0.4.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.4.2", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.0", + "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 an 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" + } + } + }, + { + "capabilities": [ + "custom-commands" + ], + "version": "0.5.1", + "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 an 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" + } + } + } + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "41722" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:14:50 GMT + Etag: + - W/"327aa9f3db8284a273346afd371d9eb2ce1df926da82665ce40825fafe83bae1" + Expires: + - Thu, 09 Apr 2026 19:19:50 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - c389cb6954a35fa692a29cb86a2319587f7fe62e + X-Frame-Options: + - deny + X-Github-Request-Id: + - 3988:3AE806:7B112:91714:69D7C88B + X-Served-By: + - cache-mia-kmia1760083-MIA + X-Timer: + - S1775762091.777518,VS0,VE62 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 80.613791ms + - id: 39 + 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 + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/spboyer/azd-ext-doctor/main/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 16828 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "spboyer.azd.doctor", + "namespace": "doctor", + "displayName": "azd doctor", + "description": "Checks for pre-reqs and template requirements as needed.", + "versions": [ + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10685ceb6d694cf96e63b6eb1bb499491447db808cb0f0a43b1d932191e513a3" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dede6048d0ee1fd5cf35a204a0ce3b49a547faa68bf6ce96a343f8cecf15fbcf" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "547af60c3bacf3ffa06e2ecd37d7d7b0f4ff3eae98f0701075f8654127c5054d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b371396ae732770aea32669f470c76c3f02b4a3e8a01042636e4f67350ac381b" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "47dd1c73f673deffbb1e404af9f46dbb804e061e70cb11d40e85aaedcbcd35b3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a0938592f6ec5756a3dc23476738bc48ec8decf18229d3b152c33c32dc3053a" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.1/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ea72e916848f1531566acd12861eb880e9a55b9b4772984cc0bb1b6de22951ee" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4831bf497d7d011a008611465a2d76ef44b73f82316a8591c5b6342ba36677c0" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "376ad9660a7580512d399013cfbfa55f692010dabfc72197090eb231aae9e471" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "211b6dba4fe75262832633e84b218dc911d9dc53c6dd66e7a23d45303a6f583e" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "07b8b60be7249562178052f2773ccf9004ff40d9ec8746555684935a9d9a3da8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0f51a15111dc38c2d6450efaafe82334d9db685714f72f4b7830cd1407aa3d3" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.1.0/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.5", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy). Checks tools, auth, and project config.", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + }, + { + "name": "configure", + "description": "Configure project settings.", + "usage": "azd doctor configure remote-build" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "329aedf5691fa13cff4497f0bc2f1a7b601df3e5f42bdc1e9df4abfda8e20152" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "21e93e3cdf7d0050e4822e6e06de13ea4726e6c02d9d76a7fb2082cc65887554" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a5e8db0e1c344c03b92a2ce1dde167355590eb142fd49e7ca68eaff9eba696b6" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2bc2de65fdc07de3adeb9370f10e93c294450f629031769cc775858603cf82d" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3ddbc76b87c35ccc45b0400c24c5c3a6f5522726d3d40f847b7902c63b8b83b9" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a69b79bf9ad6d29ffaa106d8be6a4d7cd0ca695fc25573fb64ba0235951476c8" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.5/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "verify", + "description": "Verify environment requirements for a specific azd command (up, provision, deploy).", + "usage": "azd doctor verify --command " + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "491047fb93fd8eab1c4afe72c33ed13b10f6d915ec601c116714a77c18cedd65" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fee5a5ff2586eaf62fd3162bc1fd1a840a5ff07eb2fa722d375a1e1455f35bba" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "088023cbf5296f60c2be14772a94da667c2464c14b3c96313aaf53f539ecb47f" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0e9979a6badd517b07fccfaa88e7c81ec902c35bd53170e1a9b97e1332ce310" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b8575bff409a615ebaf8088df3e64366b51ce7c57a0b3b08b6ca7bbce8be42bc" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "348e559ce0aa93b1355734db1c2c599c0ca23cf903b164205ee483e8d5082fb4" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.2/azd-ext-doctor-windows-arm64.zip" + } + } + }, + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd doctor [options]", + "examples": [ + { + "name": "check", + "description": "Checks all prerequisites.", + "usage": "azd doctor check" + }, + { + "name": "context", + "description": "Get the context of the AZD project & environment.", + "usage": "azd doctor context" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd20ab4a12510b8b46d2d41b5b514e15eb582b78f27e53d1e910fb07499effda" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe26a1d1945233056e59dec9ca4b47a84bcd098b458b6d414b1012f88d304200" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cde547f0369b7f07e1a258de037268facc72686d590dbbd8fad3497c8c9e01d7" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "637940825ada678f5ebe43250b3a7f1a2852648a07fa4bc0e85e6cf8c0846695" + }, + "entryPoint": "azd-ext-doctor", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "73e800ca2dac13dfafec117b06e038897649d254b578c4e5afc022a0dd7dff46" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aa674b7e158bc11066d4fa4c582e6798b5ec7c8bdcaba4aac46e7b43729fef0b" + }, + "entryPoint": "azd-ext-doctor.exe", + "url": "https://github.com/spboyer/azd-ext-doctor/releases/download/v0.0.1/azd-ext-doctor-windows-arm64.zip" + } + } + } + ], + "tags": [ + "developer", + "productivity", + "doctor", + "prerequisites" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "16828" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Thu, 09 Apr 2026 19:14:50 GMT + Etag: + - W/"26c76c20ba980012ef0b71572097d28cc8dc25eb6ace1a1b449ea25fb50b7b7e" + Expires: + - Thu, 09 Apr 2026 19:19:50 GMT + Source-Age: + - "0" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "0" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - d259dfdcdacf4ddb6b4ea00275b3628382971c85 + X-Frame-Options: + - deny + X-Github-Request-Id: + - E072:2F6A22:7FEE2:965AC:69D7C890 + X-Served-By: + - cache-mia-kmia1760083-MIA + X-Timer: + - S1775762091.925307,VS0,VE60 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 152.8242ms + duration: 78.190666ms --- -env_name: azdtest-w16f971 -subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1744736912" +env_name: azdtest-de1dcea +subscription_id: 5ca082f3-38f2-4bb0-b0a4-c401184ae3a8 +time: "1775761883" diff --git a/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient/Crud.yaml b/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient/Crud.yaml index d22c2fe1d13..9a28fba0b64 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient/Crud.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient/Crud.yaml @@ -9,7 +9,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net + host: strrsrkblpa3264.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -22,10 +22,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin) X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/?comp=list + - "2025-11-05" + url: https://strrsrkblpa3264.blob.core.windows.net:443/?comp=list method: GET response: proto: HTTP/1.1 @@ -36,21 +36,21 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: "\uFEFF\x3C\x3F\x78\x6D\x6C\x20\x76\x65\x72\x73\x69\x6F\x6E\x3D\"\x31\x2E\x30\"\x20\x65\x6E\x63\x6F\x64\x69\x6E\x67\x3D\"\x75\x74\x66\x2D\x38\"\x3F\x3E\x3C\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x20\x53\x65\x72\x76\x69\x63\x65\x45\x6E\x64\x70\x6F\x69\x6E\x74\x3D\"\x68\x74\x74\x70\x73\x3A\x2F\x2F\x73\x74\x73\x34\x62\x6F\x35\x36\x67\x32\x35\x6C\x6E\x6F\x63\x2E\x62\x6C\x6F\x62\x2E\x63\x6F\x72\x65\x2E\x77\x69\x6E\x64\x6F\x77\x73\x2E\x6E\x65\x74\x2F\"\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x20\x2F\x3E\x3C\x4E\x65\x78\x74\x4D\x61\x72\x6B\x65\x72\x20\x2F\x3E\x3C\x2F\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x3E" + body: "\uFEFF\x3C\x3F\x78\x6D\x6C\x20\x76\x65\x72\x73\x69\x6F\x6E\x3D\"\x31\x2E\x30\"\x20\x65\x6E\x63\x6F\x64\x69\x6E\x67\x3D\"\x75\x74\x66\x2D\x38\"\x3F\x3E\x3C\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x20\x53\x65\x72\x76\x69\x63\x65\x45\x6E\x64\x70\x6F\x69\x6E\x74\x3D\"\x68\x74\x74\x70\x73\x3A\x2F\x2F\x73\x74\x72\x72\x73\x72\x6B\x62\x6C\x70\x61\x33\x32\x36\x34\x2E\x62\x6C\x6F\x62\x2E\x63\x6F\x72\x65\x2E\x77\x69\x6E\x64\x6F\x77\x73\x2E\x6E\x65\x74\x2F\"\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x20\x2F\x3E\x3C\x4E\x65\x78\x74\x4D\x61\x72\x6B\x65\x72\x20\x2F\x3E\x3C\x2F\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x3E" headers: Content-Type: - application/xml Date: - - Tue, 15 Apr 2025 17:09:59 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - d73aeaf6-801e-0007-3229-aed354000000 + - 2781baf9-601e-0039-5154-c8894e000000 X-Ms-Version: - - "2023-11-03" + - "2025-11-05" status: 200 OK code: 200 - duration: 813.4474ms + duration: 511.286875ms - id: 1 request: proto: HTTP/1.1 @@ -59,7 +59,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net + host: strrsrkblpa3264.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -74,10 +74,10 @@ interactions: Content-Length: - "0" User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin) X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/azdtest?restype=container + - "2025-11-05" + url: https://strrsrkblpa3264.blob.core.windows.net:443/azdtest?restype=container method: PUT response: proto: HTTP/1.1 @@ -92,20 +92,20 @@ interactions: Content-Length: - "0" Date: - - Tue, 15 Apr 2025 17:09:59 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Etag: - - '"0x8DD7C405AE9D10E"' + - '"0x8DE966BFD486357"' Last-Modified: - - Tue, 15 Apr 2025 17:10:00 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - d73aec46-801e-0007-5629-aed354000000 + - 2781bb70-601e-0039-3554-c8894e000000 X-Ms-Version: - - "2023-11-03" + - "2025-11-05" status: 201 Created code: 201 - duration: 77.4119ms + duration: 52.242875ms - id: 2 request: proto: HTTP/1.1 @@ -114,7 +114,7 @@ interactions: content_length: 10 transfer_encoding: [] trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net + host: strrsrkblpa3264.blob.core.windows.net remote_addr: "" request_uri: "" body: | @@ -132,12 +132,12 @@ interactions: Content-Type: - application/octet-stream User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin) X-Ms-Blob-Type: - BlockBlob X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/azdtest/test-env/.env + - "2025-11-05" + url: https://strrsrkblpa3264.blob.core.windows.net:443/azdtest/test-env/.env method: PUT response: proto: HTTP/1.1 @@ -154,24 +154,24 @@ interactions: Content-Md5: - 0r0jdL3i4UOb6o0FfPBLsQ== Date: - - Tue, 15 Apr 2025 17:09:59 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Etag: - - '"0x8DD7C405AF7CC36"' + - '"0x8DE966BFD531555"' Last-Modified: - - Tue, 15 Apr 2025 17:10:00 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Content-Crc64: - Nhk5cnMs4SM= X-Ms-Request-Id: - - d73aec7a-801e-0007-7f29-aed354000000 + - 2781bb87-601e-0039-4854-c8894e000000 X-Ms-Request-Server-Encrypted: - "true" X-Ms-Version: - - "2023-11-03" + - "2025-11-05" status: 201 Created code: 201 - duration: 102.9618ms + duration: 50.06425ms - id: 3 request: proto: HTTP/1.1 @@ -180,7 +180,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net + host: strrsrkblpa3264.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -193,60 +193,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin) X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/?comp=list - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: false - body: "\uFEFF\x3C\x3F\x78\x6D\x6C\x20\x76\x65\x72\x73\x69\x6F\x6E\x3D\"\x31\x2E\x30\"\x20\x65\x6E\x63\x6F\x64\x69\x6E\x67\x3D\"\x75\x74\x66\x2D\x38\"\x3F\x3E\x3C\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x20\x53\x65\x72\x76\x69\x63\x65\x45\x6E\x64\x70\x6F\x69\x6E\x74\x3D\"\x68\x74\x74\x70\x73\x3A\x2F\x2F\x73\x74\x73\x34\x62\x6F\x35\x36\x67\x32\x35\x6C\x6E\x6F\x63\x2E\x62\x6C\x6F\x62\x2E\x63\x6F\x72\x65\x2E\x77\x69\x6E\x64\x6F\x77\x73\x2E\x6E\x65\x74\x2F\"\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x3E\x3C\x4E\x61\x6D\x65\x3E\x61\x7A\x64\x74\x65\x73\x74\x3C\x2F\x4E\x61\x6D\x65\x3E\x3C\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x54\x75\x65\x2C\x20\x31\x35\x20\x41\x70\x72\x20\x32\x30\x32\x35\x20\x31\x37\x3A\x31\x30\x3A\x30\x30\x20\x47\x4D\x54\x3C\x2F\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x3C\x45\x74\x61\x67\x3E\"\x30\x78\x38\x44\x44\x37\x43\x34\x30\x35\x41\x45\x39\x44\x31\x30\x45\"\x3C\x2F\x45\x74\x61\x67\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x75\x6E\x6C\x6F\x63\x6B\x65\x64\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x61\x76\x61\x69\x6C\x61\x62\x6C\x65\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x3C\x44\x65\x66\x61\x75\x6C\x74\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x3E\x24\x61\x63\x63\x6F\x75\x6E\x74\x2D\x65\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x2D\x6B\x65\x79\x3C\x2F\x44\x65\x66\x61\x75\x6C\x74\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x3E\x3C\x44\x65\x6E\x79\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x4F\x76\x65\x72\x72\x69\x64\x65\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x44\x65\x6E\x79\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x4F\x76\x65\x72\x72\x69\x64\x65\x3E\x3C\x48\x61\x73\x49\x6D\x6D\x75\x74\x61\x62\x69\x6C\x69\x74\x79\x50\x6F\x6C\x69\x63\x79\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x48\x61\x73\x49\x6D\x6D\x75\x74\x61\x62\x69\x6C\x69\x74\x79\x50\x6F\x6C\x69\x63\x79\x3E\x3C\x48\x61\x73\x4C\x65\x67\x61\x6C\x48\x6F\x6C\x64\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x48\x61\x73\x4C\x65\x67\x61\x6C\x48\x6F\x6C\x64\x3E\x3C\x49\x6D\x6D\x75\x74\x61\x62\x6C\x65\x53\x74\x6F\x72\x61\x67\x65\x57\x69\x74\x68\x56\x65\x72\x73\x69\x6F\x6E\x69\x6E\x67\x45\x6E\x61\x62\x6C\x65\x64\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x49\x6D\x6D\x75\x74\x61\x62\x6C\x65\x53\x74\x6F\x72\x61\x67\x65\x57\x69\x74\x68\x56\x65\x72\x73\x69\x6F\x6E\x69\x6E\x67\x45\x6E\x61\x62\x6C\x65\x64\x3E\x3C\x2F\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x2F\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x3E\x3C\x2F\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x3E\x3C\x4E\x65\x78\x74\x4D\x61\x72\x6B\x65\x72\x20\x2F\x3E\x3C\x2F\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x3E" - headers: - Content-Type: - - application/xml - Date: - - Tue, 15 Apr 2025 17:09:59 GMT - Server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - X-Ms-Request-Id: - - d73aecab-801e-0007-2529-aed354000000 - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 65.9979ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) - X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/azdtest/test-env/.env + - "2025-11-05" + url: https://strrsrkblpa3264.blob.core.windows.net:443/azdtest/test-env/.env method: GET response: proto: HTTP/1.1 @@ -268,131 +218,35 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 15 Apr 2025 17:09:59 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Etag: - - '"0x8DD7C405AF7CC36"' + - '"0x8DE966BFD531555"' Last-Modified: - - Tue, 15 Apr 2025 17:10:00 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Access-Tier: + - Hot + X-Ms-Access-Tier-Inferred: + - "true" X-Ms-Blob-Type: - BlockBlob X-Ms-Creation-Time: - - Tue, 15 Apr 2025 17:10:00 GMT + - Thu, 09 Apr 2026 19:12:48 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - d73aecd8-801e-0007-4c29-aed354000000 + - 2781bba2-601e-0039-6154-c8894e000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - - "2023-11-03" + - "2025-11-05" status: 200 OK code: 200 - duration: 80.4078ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) - X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/?comp=list - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: false - body: "\uFEFF\x3C\x3F\x78\x6D\x6C\x20\x76\x65\x72\x73\x69\x6F\x6E\x3D\"\x31\x2E\x30\"\x20\x65\x6E\x63\x6F\x64\x69\x6E\x67\x3D\"\x75\x74\x66\x2D\x38\"\x3F\x3E\x3C\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x20\x53\x65\x72\x76\x69\x63\x65\x45\x6E\x64\x70\x6F\x69\x6E\x74\x3D\"\x68\x74\x74\x70\x73\x3A\x2F\x2F\x73\x74\x73\x34\x62\x6F\x35\x36\x67\x32\x35\x6C\x6E\x6F\x63\x2E\x62\x6C\x6F\x62\x2E\x63\x6F\x72\x65\x2E\x77\x69\x6E\x64\x6F\x77\x73\x2E\x6E\x65\x74\x2F\"\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x3E\x3C\x4E\x61\x6D\x65\x3E\x61\x7A\x64\x74\x65\x73\x74\x3C\x2F\x4E\x61\x6D\x65\x3E\x3C\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x54\x75\x65\x2C\x20\x31\x35\x20\x41\x70\x72\x20\x32\x30\x32\x35\x20\x31\x37\x3A\x31\x30\x3A\x30\x30\x20\x47\x4D\x54\x3C\x2F\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x3C\x45\x74\x61\x67\x3E\"\x30\x78\x38\x44\x44\x37\x43\x34\x30\x35\x41\x45\x39\x44\x31\x30\x45\"\x3C\x2F\x45\x74\x61\x67\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x75\x6E\x6C\x6F\x63\x6B\x65\x64\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x61\x76\x61\x69\x6C\x61\x62\x6C\x65\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x3C\x44\x65\x66\x61\x75\x6C\x74\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x3E\x24\x61\x63\x63\x6F\x75\x6E\x74\x2D\x65\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x2D\x6B\x65\x79\x3C\x2F\x44\x65\x66\x61\x75\x6C\x74\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x3E\x3C\x44\x65\x6E\x79\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x4F\x76\x65\x72\x72\x69\x64\x65\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x44\x65\x6E\x79\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x4F\x76\x65\x72\x72\x69\x64\x65\x3E\x3C\x48\x61\x73\x49\x6D\x6D\x75\x74\x61\x62\x69\x6C\x69\x74\x79\x50\x6F\x6C\x69\x63\x79\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x48\x61\x73\x49\x6D\x6D\x75\x74\x61\x62\x69\x6C\x69\x74\x79\x50\x6F\x6C\x69\x63\x79\x3E\x3C\x48\x61\x73\x4C\x65\x67\x61\x6C\x48\x6F\x6C\x64\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x48\x61\x73\x4C\x65\x67\x61\x6C\x48\x6F\x6C\x64\x3E\x3C\x49\x6D\x6D\x75\x74\x61\x62\x6C\x65\x53\x74\x6F\x72\x61\x67\x65\x57\x69\x74\x68\x56\x65\x72\x73\x69\x6F\x6E\x69\x6E\x67\x45\x6E\x61\x62\x6C\x65\x64\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x49\x6D\x6D\x75\x74\x61\x62\x6C\x65\x53\x74\x6F\x72\x61\x67\x65\x57\x69\x74\x68\x56\x65\x72\x73\x69\x6F\x6E\x69\x6E\x67\x45\x6E\x61\x62\x6C\x65\x64\x3E\x3C\x2F\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x2F\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x3E\x3C\x2F\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x3E\x3C\x4E\x65\x78\x74\x4D\x61\x72\x6B\x65\x72\x20\x2F\x3E\x3C\x2F\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x3E" - headers: - Content-Type: - - application/xml - Date: - - Tue, 15 Apr 2025 17:09:59 GMT - Server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - X-Ms-Request-Id: - - d73aed04-801e-0007-6f29-aed354000000 - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 66.4348ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) - X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/azdtest?comp=list&restype=container - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: false - body: "\uFEFF\x3C\x3F\x78\x6D\x6C\x20\x76\x65\x72\x73\x69\x6F\x6E\x3D\"\x31\x2E\x30\"\x20\x65\x6E\x63\x6F\x64\x69\x6E\x67\x3D\"\x75\x74\x66\x2D\x38\"\x3F\x3E\x3C\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x20\x53\x65\x72\x76\x69\x63\x65\x45\x6E\x64\x70\x6F\x69\x6E\x74\x3D\"\x68\x74\x74\x70\x73\x3A\x2F\x2F\x73\x74\x73\x34\x62\x6F\x35\x36\x67\x32\x35\x6C\x6E\x6F\x63\x2E\x62\x6C\x6F\x62\x2E\x63\x6F\x72\x65\x2E\x77\x69\x6E\x64\x6F\x77\x73\x2E\x6E\x65\x74\x2F\"\x20\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x4E\x61\x6D\x65\x3D\"\x61\x7A\x64\x74\x65\x73\x74\"\x3E\x3C\x42\x6C\x6F\x62\x73\x3E\x3C\x42\x6C\x6F\x62\x3E\x3C\x4E\x61\x6D\x65\x3E\x74\x65\x73\x74\x2D\x65\x6E\x76\x2F\x2E\x65\x6E\x76\x3C\x2F\x4E\x61\x6D\x65\x3E\x3C\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x43\x72\x65\x61\x74\x69\x6F\x6E\x2D\x54\x69\x6D\x65\x3E\x54\x75\x65\x2C\x20\x31\x35\x20\x41\x70\x72\x20\x32\x30\x32\x35\x20\x31\x37\x3A\x31\x30\x3A\x30\x30\x20\x47\x4D\x54\x3C\x2F\x43\x72\x65\x61\x74\x69\x6F\x6E\x2D\x54\x69\x6D\x65\x3E\x3C\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x54\x75\x65\x2C\x20\x31\x35\x20\x41\x70\x72\x20\x32\x30\x32\x35\x20\x31\x37\x3A\x31\x30\x3A\x30\x30\x20\x47\x4D\x54\x3C\x2F\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x3C\x45\x74\x61\x67\x3E\x30\x78\x38\x44\x44\x37\x43\x34\x30\x35\x41\x46\x37\x43\x43\x33\x36\x3C\x2F\x45\x74\x61\x67\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4C\x65\x6E\x67\x74\x68\x3E\x31\x30\x3C\x2F\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4C\x65\x6E\x67\x74\x68\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x54\x79\x70\x65\x3E\x61\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x2F\x6F\x63\x74\x65\x74\x2D\x73\x74\x72\x65\x61\x6D\x3C\x2F\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x54\x79\x70\x65\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x45\x6E\x63\x6F\x64\x69\x6E\x67\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4C\x61\x6E\x67\x75\x61\x67\x65\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x43\x52\x43\x36\x34\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4D\x44\x35\x3E\x30\x72\x30\x6A\x64\x4C\x33\x69\x34\x55\x4F\x62\x36\x6F\x30\x46\x66\x50\x42\x4C\x73\x51\x3D\x3D\x3C\x2F\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4D\x44\x35\x3E\x3C\x43\x61\x63\x68\x65\x2D\x43\x6F\x6E\x74\x72\x6F\x6C\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E\x20\x2F\x3E\x3C\x42\x6C\x6F\x62\x54\x79\x70\x65\x3E\x42\x6C\x6F\x63\x6B\x42\x6C\x6F\x62\x3C\x2F\x42\x6C\x6F\x62\x54\x79\x70\x65\x3E\x3C\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x3E\x48\x6F\x74\x3C\x2F\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x3E\x3C\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x49\x6E\x66\x65\x72\x72\x65\x64\x3E\x74\x72\x75\x65\x3C\x2F\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x49\x6E\x66\x65\x72\x72\x65\x64\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x75\x6E\x6C\x6F\x63\x6B\x65\x64\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x61\x76\x61\x69\x6C\x61\x62\x6C\x65\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x3C\x53\x65\x72\x76\x65\x72\x45\x6E\x63\x72\x79\x70\x74\x65\x64\x3E\x74\x72\x75\x65\x3C\x2F\x53\x65\x72\x76\x65\x72\x45\x6E\x63\x72\x79\x70\x74\x65\x64\x3E\x3C\x2F\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x4F\x72\x4D\x65\x74\x61\x64\x61\x74\x61\x20\x2F\x3E\x3C\x2F\x42\x6C\x6F\x62\x3E\x3C\x2F\x42\x6C\x6F\x62\x73\x3E\x3C\x4E\x65\x78\x74\x4D\x61\x72\x6B\x65\x72\x20\x2F\x3E\x3C\x2F\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x3E" - headers: - Content-Type: - - application/xml - Date: - - Tue, 15 Apr 2025 17:09:59 GMT - Server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - X-Ms-Request-Id: - - d73aed4d-801e-0007-2c29-aed354000000 - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 65.5938ms - - id: 7 + duration: 45.654708ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -400,7 +254,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net + host: strrsrkblpa3264.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -413,10 +267,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin) X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/?comp=list + - "2025-11-05" + url: https://strrsrkblpa3264.blob.core.windows.net:443/azdtest?comp=list&restype=container method: GET response: proto: HTTP/1.1 @@ -427,22 +281,22 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: "\uFEFF\x3C\x3F\x78\x6D\x6C\x20\x76\x65\x72\x73\x69\x6F\x6E\x3D\"\x31\x2E\x30\"\x20\x65\x6E\x63\x6F\x64\x69\x6E\x67\x3D\"\x75\x74\x66\x2D\x38\"\x3F\x3E\x3C\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x20\x53\x65\x72\x76\x69\x63\x65\x45\x6E\x64\x70\x6F\x69\x6E\x74\x3D\"\x68\x74\x74\x70\x73\x3A\x2F\x2F\x73\x74\x73\x34\x62\x6F\x35\x36\x67\x32\x35\x6C\x6E\x6F\x63\x2E\x62\x6C\x6F\x62\x2E\x63\x6F\x72\x65\x2E\x77\x69\x6E\x64\x6F\x77\x73\x2E\x6E\x65\x74\x2F\"\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x3E\x3C\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x3E\x3C\x4E\x61\x6D\x65\x3E\x61\x7A\x64\x74\x65\x73\x74\x3C\x2F\x4E\x61\x6D\x65\x3E\x3C\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x54\x75\x65\x2C\x20\x31\x35\x20\x41\x70\x72\x20\x32\x30\x32\x35\x20\x31\x37\x3A\x31\x30\x3A\x30\x30\x20\x47\x4D\x54\x3C\x2F\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x3C\x45\x74\x61\x67\x3E\"\x30\x78\x38\x44\x44\x37\x43\x34\x30\x35\x41\x45\x39\x44\x31\x30\x45\"\x3C\x2F\x45\x74\x61\x67\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x75\x6E\x6C\x6F\x63\x6B\x65\x64\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x61\x76\x61\x69\x6C\x61\x62\x6C\x65\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x3C\x44\x65\x66\x61\x75\x6C\x74\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x3E\x24\x61\x63\x63\x6F\x75\x6E\x74\x2D\x65\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x2D\x6B\x65\x79\x3C\x2F\x44\x65\x66\x61\x75\x6C\x74\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x3E\x3C\x44\x65\x6E\x79\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x4F\x76\x65\x72\x72\x69\x64\x65\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x44\x65\x6E\x79\x45\x6E\x63\x72\x79\x70\x74\x69\x6F\x6E\x53\x63\x6F\x70\x65\x4F\x76\x65\x72\x72\x69\x64\x65\x3E\x3C\x48\x61\x73\x49\x6D\x6D\x75\x74\x61\x62\x69\x6C\x69\x74\x79\x50\x6F\x6C\x69\x63\x79\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x48\x61\x73\x49\x6D\x6D\x75\x74\x61\x62\x69\x6C\x69\x74\x79\x50\x6F\x6C\x69\x63\x79\x3E\x3C\x48\x61\x73\x4C\x65\x67\x61\x6C\x48\x6F\x6C\x64\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x48\x61\x73\x4C\x65\x67\x61\x6C\x48\x6F\x6C\x64\x3E\x3C\x49\x6D\x6D\x75\x74\x61\x62\x6C\x65\x53\x74\x6F\x72\x61\x67\x65\x57\x69\x74\x68\x56\x65\x72\x73\x69\x6F\x6E\x69\x6E\x67\x45\x6E\x61\x62\x6C\x65\x64\x3E\x66\x61\x6C\x73\x65\x3C\x2F\x49\x6D\x6D\x75\x74\x61\x62\x6C\x65\x53\x74\x6F\x72\x61\x67\x65\x57\x69\x74\x68\x56\x65\x72\x73\x69\x6F\x6E\x69\x6E\x67\x45\x6E\x61\x62\x6C\x65\x64\x3E\x3C\x2F\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x2F\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x3E\x3C\x2F\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x73\x3E\x3C\x4E\x65\x78\x74\x4D\x61\x72\x6B\x65\x72\x20\x2F\x3E\x3C\x2F\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x3E" + body: "\uFEFF\x3C\x3F\x78\x6D\x6C\x20\x76\x65\x72\x73\x69\x6F\x6E\x3D\"\x31\x2E\x30\"\x20\x65\x6E\x63\x6F\x64\x69\x6E\x67\x3D\"\x75\x74\x66\x2D\x38\"\x3F\x3E\x3C\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x20\x53\x65\x72\x76\x69\x63\x65\x45\x6E\x64\x70\x6F\x69\x6E\x74\x3D\"\x68\x74\x74\x70\x73\x3A\x2F\x2F\x73\x74\x72\x72\x73\x72\x6B\x62\x6C\x70\x61\x33\x32\x36\x34\x2E\x62\x6C\x6F\x62\x2E\x63\x6F\x72\x65\x2E\x77\x69\x6E\x64\x6F\x77\x73\x2E\x6E\x65\x74\x2F\"\x20\x43\x6F\x6E\x74\x61\x69\x6E\x65\x72\x4E\x61\x6D\x65\x3D\"\x61\x7A\x64\x74\x65\x73\x74\"\x3E\x3C\x42\x6C\x6F\x62\x73\x3E\x3C\x42\x6C\x6F\x62\x3E\x3C\x4E\x61\x6D\x65\x3E\x74\x65\x73\x74\x2D\x65\x6E\x76\x2F\x2E\x65\x6E\x76\x3C\x2F\x4E\x61\x6D\x65\x3E\x3C\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x43\x72\x65\x61\x74\x69\x6F\x6E\x2D\x54\x69\x6D\x65\x3E\x54\x68\x75\x2C\x20\x30\x39\x20\x41\x70\x72\x20\x32\x30\x32\x36\x20\x31\x39\x3A\x31\x32\x3A\x34\x38\x20\x47\x4D\x54\x3C\x2F\x43\x72\x65\x61\x74\x69\x6F\x6E\x2D\x54\x69\x6D\x65\x3E\x3C\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x54\x68\x75\x2C\x20\x30\x39\x20\x41\x70\x72\x20\x32\x30\x32\x36\x20\x31\x39\x3A\x31\x32\x3A\x34\x38\x20\x47\x4D\x54\x3C\x2F\x4C\x61\x73\x74\x2D\x4D\x6F\x64\x69\x66\x69\x65\x64\x3E\x3C\x45\x74\x61\x67\x3E\x30\x78\x38\x44\x45\x39\x36\x36\x42\x46\x44\x35\x33\x31\x35\x35\x35\x3C\x2F\x45\x74\x61\x67\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4C\x65\x6E\x67\x74\x68\x3E\x31\x30\x3C\x2F\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4C\x65\x6E\x67\x74\x68\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x54\x79\x70\x65\x3E\x61\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x2F\x6F\x63\x74\x65\x74\x2D\x73\x74\x72\x65\x61\x6D\x3C\x2F\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x54\x79\x70\x65\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x45\x6E\x63\x6F\x64\x69\x6E\x67\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4C\x61\x6E\x67\x75\x61\x67\x65\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x43\x52\x43\x36\x34\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4D\x44\x35\x3E\x30\x72\x30\x6A\x64\x4C\x33\x69\x34\x55\x4F\x62\x36\x6F\x30\x46\x66\x50\x42\x4C\x73\x51\x3D\x3D\x3C\x2F\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x4D\x44\x35\x3E\x3C\x43\x61\x63\x68\x65\x2D\x43\x6F\x6E\x74\x72\x6F\x6C\x20\x2F\x3E\x3C\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E\x20\x2F\x3E\x3C\x42\x6C\x6F\x62\x54\x79\x70\x65\x3E\x42\x6C\x6F\x63\x6B\x42\x6C\x6F\x62\x3C\x2F\x42\x6C\x6F\x62\x54\x79\x70\x65\x3E\x3C\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x3E\x48\x6F\x74\x3C\x2F\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x3E\x3C\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x49\x6E\x66\x65\x72\x72\x65\x64\x3E\x74\x72\x75\x65\x3C\x2F\x41\x63\x63\x65\x73\x73\x54\x69\x65\x72\x49\x6E\x66\x65\x72\x72\x65\x64\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x75\x6E\x6C\x6F\x63\x6B\x65\x64\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x75\x73\x3E\x3C\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x61\x76\x61\x69\x6C\x61\x62\x6C\x65\x3C\x2F\x4C\x65\x61\x73\x65\x53\x74\x61\x74\x65\x3E\x3C\x53\x65\x72\x76\x65\x72\x45\x6E\x63\x72\x79\x70\x74\x65\x64\x3E\x74\x72\x75\x65\x3C\x2F\x53\x65\x72\x76\x65\x72\x45\x6E\x63\x72\x79\x70\x74\x65\x64\x3E\x3C\x2F\x50\x72\x6F\x70\x65\x72\x74\x69\x65\x73\x3E\x3C\x4F\x72\x4D\x65\x74\x61\x64\x61\x74\x61\x20\x2F\x3E\x3C\x2F\x42\x6C\x6F\x62\x3E\x3C\x2F\x42\x6C\x6F\x62\x73\x3E\x3C\x4E\x65\x78\x74\x4D\x61\x72\x6B\x65\x72\x20\x2F\x3E\x3C\x2F\x45\x6E\x75\x6D\x65\x72\x61\x74\x69\x6F\x6E\x52\x65\x73\x75\x6C\x74\x73\x3E" headers: Content-Type: - application/xml Date: - - Tue, 15 Apr 2025 17:09:59 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - d73aed7e-801e-0007-5929-aed354000000 + - 2781bbb5-601e-0039-7354-c8894e000000 X-Ms-Version: - - "2023-11-03" + - "2025-11-05" status: 200 OK code: 200 - duration: 65.5947ms - - id: 8 + duration: 46.525625ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -450,7 +304,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: sts4bo56g25lnoc.blob.core.windows.net + host: strrsrkblpa3264.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -463,10 +317,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.24.2; Windows_NT) + - azsdk-go-azblob/v1.6.2 (go1.26.1; darwin) X-Ms-Version: - - "2023-11-03" - url: https://sts4bo56g25lnoc.blob.core.windows.net:443/azdtest/test-env/.env + - "2025-11-05" + url: https://strrsrkblpa3264.blob.core.windows.net:443/azdtest/test-env/.env method: DELETE response: proto: HTTP/1.1 @@ -481,17 +335,17 @@ interactions: Content-Length: - "0" Date: - - Tue, 15 Apr 2025 17:10:00 GMT + - Thu, 09 Apr 2026 19:12:48 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Delete-Type-Permanent: - "true" X-Ms-Request-Id: - - d73aedaf-801e-0007-8029-aed354000000 + - 2781bbca-601e-0039-0654-c8894e000000 X-Ms-Version: - - "2023-11-03" + - "2025-11-05" status: 202 Accepted code: 202 - duration: 84.4415ms + duration: 51.951167ms --- -time: "1744736998" +time: "1775761967"